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 10*d0755cd6SMatthias Ringwald #define HAVE_POSIX_TIME 11a98592bcSMatthias Ringwald 12a98592bcSMatthias Ringwald // BTstack features that can be enabled 13a98592bcSMatthias Ringwald #define ENABLE_BLE 14532bc034SMatthias Ringwald #define ENABLE_CLASSIC 15a98592bcSMatthias Ringwald #define ENABLE_LOG_DEBUG 16a98592bcSMatthias Ringwald #define ENABLE_LOG_ERROR 17a98592bcSMatthias Ringwald #define ENABLE_LOG_INFO 18a98592bcSMatthias Ringwald #define ENABLE_LOG_INTO_HCI_DUMP 19a98592bcSMatthias Ringwald #define ENABLE_SDP_DES_DUMP 20a98592bcSMatthias Ringwald #define ENABLE_SDP_EXTRA_QUERIES 21a98592bcSMatthias Ringwald 22a98592bcSMatthias Ringwald // BTstack configuration. buffers, sizes, ... 23a98592bcSMatthias Ringwald #define HCI_ACL_PAYLOAD_SIZE 52 24a98592bcSMatthias Ringwald #define HCI_INCOMING_PRE_BUFFER_SIZE 4 25a98592bcSMatthias Ringwald 26a265b909SMatthias Ringwald #define MAX_NR_HCI_CONNECTIONS 0 27a265b909SMatthias Ringwald #define MAX_NR_GATT_CLIENTS 0 28a265b909SMatthias Ringwald #define MAX_NR_GATT_SUBCLIENTS 0 29a265b909SMatthias Ringwald #define MAX_NR_L2CAP_SERVICES 0 30a265b909SMatthias Ringwald #define MAX_NR_L2CAP_CHANNELS 0 31a265b909SMatthias Ringwald #define MAX_NR_RFCOMM_MULTIPLEXERS 0 32a265b909SMatthias Ringwald #define MAX_NR_RFCOMM_SERVICES 0 33a265b909SMatthias Ringwald #define MAX_NR_RFCOMM_CHANNELS 0 34a265b909SMatthias Ringwald #define MAX_NR_BNEP_SERVICES 0 35a265b909SMatthias Ringwald #define MAX_NR_BNEP_CHANNELS 0 36a265b909SMatthias Ringwald #define MAX_NR_BTSTACK_LINK_KEY_DB_MEMORY_ENTRIES 2 37a265b909SMatthias Ringwald #define MAX_NR_HFP_CONNECTIONS 0 38a265b909SMatthias Ringwald #define MAX_NR_WHITELIST_ENTRIES 0 39a265b909SMatthias Ringwald #define MAX_NR_SM_LOOKUP_ENTRIES 0 40a265b909SMatthias Ringwald #define MAX_NR_SERVICE_RECORD_ITEMS 0 41a98592bcSMatthias Ringwald 42a98592bcSMatthias Ringwald #endif 43