-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathapp_main.c
70 lines (52 loc) · 1.46 KB
/
app_main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*********************************************************************************************
* Filename : app_main.c
* Description :
* Author : Bingquan
* Email : caibingquan@zh-jieli.com
* Last modifiled : 2019-05-11 14:54
* Copyright:(c)JIELI 2011-2019 @ , All Rights Reserved.
*********************************************************************************************/
#include "system/includes.h"
/*任务列表 */
const struct task_info task_info_table[] = {
{"app_core", 1, 640, 128 },
{"sys_event", 7, 256, 0 },
{"btctrler", 4, 512, 256 },
{"btencry", 1, 512, 128 },
{"btstack", 3, 768, 256 },
{"systimer", 7, 128, 0 },
{0, 0},
};
u16 update_result_get(void)
{
return 0;
}
__attribute__((weak)) u8 get_charge_online_flag(void)
{
return 0;
}
void app_main()
{
struct intent it;
printf(">>>>>>>>>>>>>>>>>app_main...\n");
init_intent(&it);
it.name = "my_hid";
it.action = 9;
printf("run app>>> %s", it.name);
start_app(&it);
}
int eSystemConfirmStopStatus(void)
{
/* 系统进入在未来时间里,无任务超时唤醒,可根据用户选择系统停止,或者系统定时唤醒(100ms) */
//1:Endless Sleep
//0:100 ms wakeup
/* log_info("100ms wakeup"); */
return 1;
}
#if 0
static int err;
__attribute__((used)) int *__errno()
{
return &err;
}
#endif