source: asp3_tinet_ecnl_arm/trunk/asp3_dcre/sample/sample1.cfg@ 374

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

mbed関連を更新
シリアルドライバをmbedのHALを使うよう変更
ファイルディスクリプタの処理を更新

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain;charset=UTF-8
File size: 843 bytes
Line 
1/*
2 * サンプルプログラム(1)のシステムコンフィギュレーションファイル
3 *
4 * $Id$
5 */
6INCLUDE("tecsgen.cfg");
7INCLUDE("mbed_stub.cfg");
8
9#include "sample1.h"
10CRE_TSK(TASK1, { TA_NULL, 1, task, MID_PRIORITY, STACK_SIZE, NULL });
11CRE_TSK(TASK2, { TA_NULL, 2, task, MID_PRIORITY, STACK_SIZE, NULL });
12CRE_TSK(MAIN_TASK, { TA_ACT, 0, main_task, MAIN_PRIORITY, STACK_SIZE, NULL });
13CRE_TSK(EXC_TASK, { TA_NULL, 0, exc_task, EXC_PRIORITY, STACK_SIZE, NULL });
14AID_TSK(3);
15CRE_CYC(CYCHDR1, { TA_NULL, { TNFY_HANDLER, 0, cyclic_handler }, 2000000, 0 });
16AID_ALM(1);
17#ifdef INTNO1
18CFG_INT(INTNO1, { INTNO1_INTATR, INTNO1_INTPRI });
19CRE_ISR(INTNO1_ISR, { TA_NULL, 0, INTNO1, intno1_isr, 1 });
20#endif /* INTNO1 */
21#ifdef CPUEXC1
22DEF_EXC(CPUEXC1, { TA_NULL, cpuexc_handler });
23#endif /* CPUEXC1 */
24DEF_KMM({ KMM_SIZE, NULL });
Note: See TracBrowser for help on using the repository browser.