xref: /btstack/test/btstack_link_key_db/btstack_config.h (revision 02a3cd7f0093996b2361088f1a5baf75d8a128da)
1a98592bcSMatthias Ringwald //
2a98592bcSMatthias Ringwald // btstack_config.h for Arduino port
3a98592bcSMatthias Ringwald //
4a98592bcSMatthias Ringwald 
5*02a3cd7fSMilanka Ringwald #ifndef BTSTACK_CONFIG_H
6*02a3cd7fSMilanka Ringwald #define BTSTACK_CONFIG_H
7a98592bcSMatthias Ringwald 
8a98592bcSMatthias Ringwald // Port related features
9d0755cd6SMatthias Ringwald #define HAVE_POSIX_TIME
10a98592bcSMatthias Ringwald 
11a98592bcSMatthias Ringwald // BTstack features that can be enabled
12a98592bcSMatthias Ringwald #define ENABLE_BLE
13532bc034SMatthias Ringwald #define ENABLE_CLASSIC
14a98592bcSMatthias Ringwald #define ENABLE_LOG_DEBUG
15a98592bcSMatthias Ringwald #define ENABLE_LOG_ERROR
16a98592bcSMatthias Ringwald #define ENABLE_LOG_INFO
17a98592bcSMatthias Ringwald #define ENABLE_SDP_DES_DUMP
18a98592bcSMatthias Ringwald #define ENABLE_SDP_EXTRA_QUERIES
19a98592bcSMatthias Ringwald 
20a98592bcSMatthias Ringwald // BTstack configuration. buffers, sizes, ...
21a98592bcSMatthias Ringwald #define HCI_ACL_PAYLOAD_SIZE 52
22a98592bcSMatthias Ringwald #define HCI_INCOMING_PRE_BUFFER_SIZE 4
23a98592bcSMatthias Ringwald 
24*02a3cd7fSMilanka Ringwald #define MAX_NR_BNEP_CHANNELS 0
25*02a3cd7fSMilanka Ringwald #define MAX_NR_BNEP_SERVICES 0
26*02a3cd7fSMilanka Ringwald #define MAX_NR_BTSTACK_LINK_KEY_DB_MEMORY_ENTRIES  2
27a265b909SMatthias Ringwald #define MAX_NR_GATT_CLIENTS 0
28a265b909SMatthias Ringwald #define MAX_NR_GATT_SUBCLIENTS 0
29*02a3cd7fSMilanka Ringwald #define MAX_NR_HCI_CONNECTIONS 0
30*02a3cd7fSMilanka Ringwald #define MAX_NR_HFP_CONNECTIONS 0
31a265b909SMatthias Ringwald #define MAX_NR_L2CAP_CHANNELS  0
32*02a3cd7fSMilanka Ringwald #define MAX_NR_L2CAP_SERVICES  0
33*02a3cd7fSMilanka Ringwald #define MAX_NR_RFCOMM_CHANNELS 0
34a265b909SMatthias Ringwald #define MAX_NR_RFCOMM_MULTIPLEXERS 0
35a265b909SMatthias Ringwald #define MAX_NR_RFCOMM_SERVICES 0
36a265b909SMatthias Ringwald #define MAX_NR_SERVICE_RECORD_ITEMS 0
37*02a3cd7fSMilanka Ringwald #define MAX_NR_SM_LOOKUP_ENTRIES 0
38*02a3cd7fSMilanka Ringwald #define MAX_NR_WHITELIST_ENTRIES 0
39a98592bcSMatthias Ringwald 
40a98592bcSMatthias Ringwald #endif
41