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