xref: /btstack/port/archive/msp430f5229lp-cc2564b/btstack_config.h (revision 1664436fd643daf66517dc309e6cc72448e8a86d)
1 //
2 // btstack_config.h for msp-exp430f5438-cc2564b port
3 //
4 
5 #ifndef BTSTACK_CONFIG_H
6 #define BTSTACK_CONFIG_H
7 
8 // Port related features
9 #define HAVE_EMBEDDED_TICK
10 
11 // BTstack features that can be enabled
12 #define ENABLE_CLASSIC
13 #define ENABLE_PRINTF_HEXDUMP
14 
15 // BTstack configuration. buffers, sizes, ...
16 #define HCI_ACL_PAYLOAD_SIZE 52
17 #define MAX_NR_BNEP_CHANNELS MAX_SPP_CONNECTIONS
18 #define MAX_NR_BNEP_SERVICES 1
19 #define MAX_NR_BTSTACK_LINK_KEY_DB_MEMORY_ENTRIES  2
20 #define MAX_NR_GATT_CLIENTS 1
21 #define MAX_NR_HCI_CONNECTIONS MAX_SPP_CONNECTIONS
22 #define MAX_NR_HFP_CONNECTIONS 0
23 #define MAX_NR_L2CAP_CHANNELS  (1+MAX_SPP_CONNECTIONS)
24 #define MAX_NR_L2CAP_SERVICES  2
25 #define MAX_NR_LE_DEVICE_DB_ENTRIES 0
26 #define MAX_NR_RFCOMM_CHANNELS MAX_SPP_CONNECTIONS
27 #define MAX_NR_RFCOMM_MULTIPLEXERS MAX_SPP_CONNECTIONS
28 #define MAX_NR_RFCOMM_SERVICES 1
29 #define MAX_NR_SERVICE_RECORD_ITEMS 1
30 #define MAX_NR_SM_LOOKUP_ENTRIES 3
31 #define MAX_NR_WHITELIST_ENTRIES 1
32 #define MAX_SPP_CONNECTIONS 1
33 
34 #endif
35 
36