source: azure_iot_hub_riscv/trunk/asp_baseplatform/test/test_sem2.cfg@ 453

Last change on this file since 453 was 453, checked in by coas-nagasima, 4 years ago

ファイルを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain;charset=UTF-8
File size: 599 bytes
Line 
1/*
2 * @(#) $Id$
3 */
4
5/*
6 * セマフォ機能のテスト(2)のシステムコンフィギュレーションファイル
7 */
8INCLUDE("target_timer.cfg");
9INCLUDE("syssvc/syslog.cfg");
10INCLUDE("syssvc/banner.cfg");
11INCLUDE("syssvc/serial.cfg");
12
13#include "test_sem2.h"
14
15CRE_TSK(TASK1, { TA_ACT, 1, task1, MID_PRIORITY, STACK_SIZE, NULL });
16CRE_TSK(TASK2, { TA_NULL, 2, task2, HIGH_PRIORITY, STACK_SIZE, NULL });
17CRE_TSK(TASK3, { TA_NULL, 3, task3, LOW_PRIORITY, STACK_SIZE, NULL });
18CRE_ALM(ALM1, { TA_NULL, 1, alarm1_handler });
19CRE_SEM(SEM1, { TA_NULL, 1, 1 });
20CRE_SEM(SEM2, { TA_TPRI, 0, 1 });
Note: See TracBrowser for help on using the repository browser.