-
Notifications
You must be signed in to change notification settings - Fork 4
/
bindings.h
40 lines (35 loc) · 1.02 KB
/
bindings.h
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
#include "stdlib.h"
// app_modules
#include "app.h"
#include "app_easy_gap.h"
#include "app_entry_point.h"
#include "app_prf_types.h"
#include "app_customs.h"
#include "app_task.h"
#include "app_callback.h"
// ble_stack
#include "custs1_task.h"
#include "custs1.h"
#include "gap.h"
#include "gapc_task.h"
#include "gapm_task.h"
#include "attm_db_128.h"
#include "llm.h"
// platform
#include "syscntl.h"
#include "system_library.h"
#include "ke_msg.h"
#include "rwip_config.h"
#include "rwip.h"
#include "aes.h"
#include "otp_cs.h"
#include "rf_531.h"
#include "spi.h"
#include "spi_flash.h"
const uint8_t APP_MODULES_TIMER_MAX_NUM = (APP_TIMER_API_LAST_MES - APP_TIMER_API_MES0 + 1);
const uint16_t APP_MODULES_TIMER_API_MES0 = APP_TIMER_API_MES0;
const uint16_t APP_MODULES_TIMER_API_LAST_MES = APP_TIMER_API_LAST_MES;
const uint32_t MSG_APP_CREATE_TIMER = APP_CREATE_TIMER;
const uint32_t MSG_APP_MODIFY_TIMER = APP_MODIFY_TIMER;
const uint32_t MSG_APP_CANCEL_TIMER = APP_CANCEL_TIMER;
const uint16_t CORE_MODULES_RWIP_TASK_APP = TASK_APP;