source: azure_iot_hub_f767zi/trunk/asp_baseplatform/sample/sample1.cfg@ 457

Last change on this file since 457 was 457, 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: 826 bytes
Line 
1/*
2 * $Id$
3 */
4
5/*
6 * サンプルプログラム(1)のシステムコンフィギュレーションファイル
7 */
8INCLUDE("target_timer.cfg");
9INCLUDE("syssvc/syslog.cfg");
10INCLUDE("syssvc/banner.cfg");
11INCLUDE("syssvc/serial.cfg");
12INCLUDE("syssvc/logtask.cfg");
13
14#include "sample1.h"
15CRE_TSK(TASK1, { TA_NULL, 1, task, MID_PRIORITY, STACK_SIZE, NULL });
16CRE_TSK(TASK2, { TA_NULL, 2, task, MID_PRIORITY, STACK_SIZE, NULL });
17CRE_TSK(MAIN_TASK, { TA_ACT, 0, main_task, MAIN_PRIORITY, STACK_SIZE, NULL });
18AID_TSK(3);
19DEF_TEX(TASK1, { TA_NULL, tex_routine });
20DEF_TEX(TASK2, { TA_NULL, tex_routine });
21CRE_CYC(CYCHDR1, { TA_NULL, 0, cyclic_handler, 2000, 0 });
22CRE_ALM(ALMHDR1, { TA_NULL, 0, alarm_handler });
23#ifdef CPUEXC1
24DEF_EXC(CPUEXC1, { TA_NULL, cpuexc_handler });
25#endif /* CPUEXC1 */
26DEF_KMM({ KMM_SIZE, NULL });
Note: See TracBrowser for help on using the repository browser.