1 /*
2  * Copyright (C) 2015-2017 Alibaba Group Holding Limited
3  */
4 
5 #ifndef BLE_CONFIG_H
6 #define BLE_CONFIG_H
7 
8 /**
9  * CONFIG_BT: Tx thread stack size
10  */
11 
12 #ifndef CONFIG_BT_HCI_TX_STACK_SIZE
13 #define CONFIG_BT_HCI_TX_STACK_SIZE 512
14 #endif
15 
16 #ifndef CONFIG_BT_HCI_RX_STACK_SIZE
17 #define CONFIG_BT_HCI_RX_STACK_SIZE 1024
18 #endif
19 
20 #ifndef CONFIG_BT_HCI_CMD_COUNT
21 #define CONFIG_BT_HCI_CMD_COUNT 16
22 #endif
23 
24 #define CONFIG_BT_HOST_RX_THREAD
25 
26 #if defined(__cplusplus)
27 }
28 #endif
29 
30 #endif /* BLE_DEF_CONFIG_H */
31