source: azure_iot_hub_f767zi/trunk/asp_baseplatform/monitor/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: 930 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");
13INCLUDE("monitor/monitor.cfg");
14
15#include "sample1.h"
16CRE_TSK(TASK1, { TA_NULL, 1, task, MID_PRIORITY, STACK_SIZE, NULL });
17CRE_TSK(TASK2, { TA_NULL, 2, task, MID_PRIORITY, STACK_SIZE, NULL });
18CRE_TSK(TASK3, { TA_NULL, 3, task, MID_PRIORITY, STACK_SIZE, NULL });
19CRE_TSK(MAIN_TASK, { TA_NULL, 0, main_task, MAIN_PRIORITY, STACK_SIZE, NULL });
20DEF_TEX(TASK1, { TA_NULL, tex_routine });
21DEF_TEX(TASK2, { TA_NULL, tex_routine });
22DEF_TEX(TASK3, { TA_NULL, tex_routine });
23CRE_CYC(CYCHDR1, { TA_NULL, 0, cyclic_handler, 2000, 0 });
24CRE_ALM(ALMHDR1, { TA_NULL, 0, alarm_handler });
25#ifdef CPUEXC1
26DEF_EXC(CPUEXC1, { TA_NULL, cpuexc_handler });
27#endif /* CPUEXC1 */
Note: See TracBrowser for help on using the repository browser.