xref: /btstack/port/apollo2-em9304/btstack_config.h (revision 0561b2d8d5dba972c7daa57d5e677f7a1327edfd)
1 //
2 // btstack_config.h for EM9304 DVK
3 //
4 
5 #ifndef __BTSTACK_CONFIG
6 #define __BTSTACK_CONFIG
7 
8 // Port related features
9 #define HAVE_EMBEDDED_TIME_MS
10 
11 // BTstack features that can be enabled
12 #define ENABLE_BLE
13 #define ENABLE_LE_PERIPHERAL
14 #define ENABLE_LE_CENTRAL
15 #define ENABLE_LE_DATA_CHANNELS
16 #define ENABLE_LE_DATA_LENGTH_EXTENSION
17 // #define ENABLE_LOG_INFO
18 #define ENABLE_LOG_ERROR
19 
20 // BTstack configuration. buffers, sizes, ...
21 #define HCI_ACL_PAYLOAD_SIZE 200
22 #define MAX_NR_WHITELIST_ENTRIES 1
23 #define MAX_NR_HCI_CONNECTIONS 1
24 #define MAX_NR_SM_LOOKUP_ENTRIES 3
25 #define MAX_NR_GATT_CLIENTS 1
26 
27 #define MAX_NR_LE_DEVICE_DB_ENTRIES 1
28 
29 #endif
30