OSDN Git Service

Doxygenコメントを追加した。
[uzume/uzume_bfin.git] / uzume_prototype / uzume_app.c
1
2 #include <t_services.h>
3 #include "kernel_id.h"
4 #include "uzume_app.h"
5
6 #define ADCADDR 0x28
7
8
9 /*
10  *  メインタスク
11  */
12 void main_task(VP_INT exinf)
13 {
14     syslog(LOG_NOTICE, "Prototype started ");
15
16     while(1)
17     {
18         tslp_tsk(200);
19     }
20 }
21