source: asp_ewarm/asp-1.7.0/test/test_sem2.cfg@ 61

Last change on this file since 61 was 61, checked in by ertl-honda, 11 years ago

ASP for EWARM のコミット.

File size: 641 bytes
Line 
1/*
2 * @(#) $Id: test_sem2.cfg 1572 2009-05-31 13:40:39Z ertl-hiro $
3 */
4
5/*
6 * ƒZƒ}ƒtƒH‹@”\‚̃eƒXƒg(2)‚̃VƒXƒeƒ€ƒRƒ“ƒtƒBƒMƒ…
7ƒŒ[ƒVƒ‡ƒ“ƒtƒ@ƒCƒ‹
8 */
9INCLUDE("target_timer.cfg");
10INCLUDE("syssvc/syslog.cfg");
11INCLUDE("syssvc/banner.cfg");
12INCLUDE("syssvc/serial.cfg");
13
14#include "test_sem2.h"
15
16CRE_TSK(TASK1, { TA_ACT, 1, task1, MID_PRIORITY, STACK_SIZE, NULL });
17CRE_TSK(TASK2, { TA_NULL, 2, task2, HIGH_PRIORITY, STACK_SIZE, NULL });
18CRE_TSK(TASK3, { TA_NULL, 3, task3, LOW_PRIORITY, STACK_SIZE, NULL });
19CRE_ALM(ALM1, { TA_NULL, 1, alarm1_handler });
20CRE_SEM(SEM1, { TA_NULL, 1, 1 });
21CRE_SEM(SEM2, { TA_TPRI, 0, 1 });
Note: See TracBrowser for help on using the repository browser.