xref: /btstack/port/zephyr/btstack_config.h (revision dd1f98b4e81ec79bc5547c3a203806c168df8ee0)
1 //
2 // btstack_config.h for mRF5-Zephyr port
3 //
4 // Documentation: https://bluekitchen-gmbh.com/btstack/#how_to/
5 //
6 
7 #ifndef BTSTACK_CONFIG_H
8 #define BTSTACK_CONFIG_H
9 
10 // Port related features
11 
12 // BTstack features that can be enabled
13 #define ENABLE_BLE
14 #define ENABLE_LE_CENTRAL
15 #define ENABLE_L2CAP_LE_CREDIT_BASED_FLOW_CONTROL_MODE
16 #define ENABLE_LE_DATA_LENGTH_EXTENSION
17 #define ENABLE_LE_EXTENDED_ADVERTISING
18 #define ENABLE_LE_ISOCHRONOUS_STREAMS
19 #define ENABLE_LE_PERIODIC_ADVERTISING
20 #define ENABLE_LE_PERIPHERAL
21 #define ENABLE_LOG_ERROR
22 #define ENABLE_LOG_INFO
23 #define ENABLE_PRINTF_HEXDUMP
24 
25 // BTstack configuration. buffers, sizes, ...
26 #define HCI_ACL_PAYLOAD_SIZE 260
27 #define MAX_NR_GATT_CLIENTS 1
28 #define MAX_NR_HCI_CONNECTIONS 1
29 #define MAX_NR_L2CAP_CHANNELS 1
30 #define MAX_NR_L2CAP_SERVICES 1
31 #define MAX_NR_SM_LOOKUP_ENTRIES 3
32 #define MAX_NR_WHITELIST_ENTRIES 1
33 #define MAX_NR_HCI_ISO_STREAMS 10
34 
35 #define MAX_NR_BNEP_CHANNELS 0
36 #define MAX_NR_BNEP_SERVICES 0
37 #define MAX_NR_BTSTACK_LINK_KEY_DB_MEMORY_ENTRIES 0
38 #define MAX_NR_HFP_CONNECTIONS 0
39 #define MAX_NR_LE_DEVICE_DB_ENTRIES 1
40 #define MAX_NR_RFCOMM_CHANNELS 0
41 #define MAX_NR_RFCOMM_MULTIPLEXERS 0
42 #define MAX_NR_RFCOMM_SERVICES 0
43 #define MAX_NR_SERVICE_RECORD_ITEMS 0
44 
45 // hack to fix usage of hci_init in zephry
46 #define hci_init btstack_hci_init
47 
48 // LE Device DB using TLV
49 #define NVM_NUM_DEVICE_DB_ENTRIES 16
50 
51 #endif
52