source: asp3_wo_tecs/trunk/target/nucleo_f401re_gcc/truestudio/asp3/sample1.cfg@ 308

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

MANIFESTの更新

File size: 1.0 KB
Line 
1/*
2 * サンプルプログラム(1)のシステムコンフィギュレーションファイル
3 *
4 * $Id: sample1.cfg 326 2015-06-21 06:06:45Z ertl-hiro $
5 */
6INCLUDE("syssvc/syslog.cfg");
7INCLUDE("syssvc/banner.cfg");
8INCLUDE("syssvc/serial.cfg");
9INCLUDE("syssvc/logtask.cfg");
10
11#include "sample1.h"
12CRE_TSK(TASK1, { TA_NULL, 1, task, MID_PRIORITY, STACK_SIZE, NULL });
13CRE_TSK(TASK2, { TA_NULL, 2, task, MID_PRIORITY, STACK_SIZE, NULL });
14CRE_TSK(TASK3, { TA_NULL, 3, task, MID_PRIORITY, STACK_SIZE, NULL });
15CRE_TSK(MAIN_TASK, { TA_ACT, 0, main_task, MAIN_PRIORITY, STACK_SIZE, NULL });
16CRE_TSK(EXC_TASK, { TA_NULL, 0, exc_task, EXC_PRIORITY, STACK_SIZE, NULL });
17CRE_CYC(CYCHDR1, { TA_NULL, { TNFY_HANDLER, 0, cyclic_handler }, 2000000, 0 });
18CRE_ALM(ALMHDR1, { TA_NULL, { TNFY_HANDLER, 0, alarm_handler }});
19#ifdef INTNO1
20CFG_INT(INTNO1, { INTNO1_INTATR, INTNO1_INTPRI });
21CRE_ISR(INTNO1_ISR, { TA_NULL, 0, INTNO1, intno1_isr, 1 });
22#endif /* INTNO1 */
23#ifdef CPUEXC1
24DEF_EXC(CPUEXC1, { TA_NULL, cpuexc_handler });
25#endif /* CPUEXC1 */
Note: See TracBrowser for help on using the repository browser.