1 // 2 // btstack_config.h for SAMV71 + ATWILC3000 3 // 4 // Documentation: https://bluekitchen-gmbh.com/btstack/#how_to/ 5 // 6 7 #ifndef BTSTACK_CONFIG_H 8 #define BTSTACK_CONFIG_H 9 10 #define HAVE_BTSTACK_STDIN 11 #define HAVE_EMBEDDED_TICK 12 #define HAVE_INIT_SCRIPT 13 #define HAVE_UART_DMA_SET_FLOWCONTROL 14 15 #define ENABLE_BLE 16 #define ENABLE_LE_CENTRAL 17 #define ENABLE_L2CAP_LE_CREDIT_BASED_FLOW_CONTROL_MODE 18 #define ENABLE_LE_PERIPHERAL 19 #define ENABLE_LOG_ERROR 20 #define ENABLE_LOG_INFO 21 #define ENABLE_PRINTF_HEXDUMP 22 23 #define HCI_ACL_PAYLOAD_SIZE 300 24 25 // memory config 26 27 #define MAX_NR_GATT_CLIENTS 1 28 #define MAX_NR_GATT_SUBCLIENTS 1 29 #define MAX_NR_HCI_CONNECTIONS 1 30 #define MAX_NR_HIDS_CLIENTS 1 31 #define MAX_NR_LE_DEVICE_DB_ENTRIES 1 32 #define MAX_NR_RFCOMM_CHANNELS 0 33 #define MAX_NR_RFCOMM_MULTIPLEXERS 0 34 #define MAX_NR_RFCOMM_SERVICES 0 35 #define MAX_NR_SERVICE_RECORD_ITEMS 0 36 #define MAX_NR_SM_LOOKUP_ENTRIES 1 37 #define MAX_NR_WHITELIST_ENTRIES 1 38 39 #endif 40 41