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

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

arm向けASP3版ECNLを追加

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