1 // 2 // btstack_config.h for Raspberry Pi port 3 // 4 // Documentation: https://bluekitchen-gmbh.com/btstack/#how_to/ 5 // 6 7 #ifndef BTSTACK_CONFIG_H 8 #define BTSTACK_CONFIG_H 9 10 // Port related features 11 #define HAVE_ASSERT 12 #define HAVE_BTSTACK_STDIN 13 #define HAVE_MALLOC 14 #define HAVE_POSIX_FILE_IO 15 16 // BTstack features that can be enabled 17 #define ENABLE_BLE 18 #define ENABLE_CLASSIC 19 #define ENABLE_H5 20 #define ENABLE_HFP_WIDE_BAND_SPEECH 21 #define ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE 22 #define ENABLE_LE_CENTRAL 23 #define ENABLE_L2CAP_LE_CREDIT_BASED_FLOW_CONTROL_MODE 24 #define ENABLE_LE_DATA_LENGTH_EXTENSION 25 #define ENABLE_LE_PERIPHERAL 26 #define ENABLE_LE_SECURE_CONNECTIONS 27 #define ENABLE_LOG_ERROR 28 #define ENABLE_LOG_INFO 29 #define ENABLE_MICRO_ECC_FOR_LE_SECURE_CONNECTIONS 30 #define ENABLE_PRINTF_HEXDUMP 31 #define ENABLE_SCO_OVER_HCI 32 #define ENABLE_SDP_DES_DUMP 33 #define ENABLE_SOFTWARE_AES128 34 35 // Warm Boot needed if connected via Wifi on Raspberry Pi 3A+ or 3B+ 36 // #define ENABLE_CONTROLLER_WARM_BOOT 37 38 // BTstack configuration. buffers, sizes, ... 39 #define HCI_ACL_PAYLOAD_SIZE (1691 + 4) 40 #define HCI_INCOMING_PRE_BUFFER_SIZE 14 // sizeof BNEP header, avoid memcpy 41 #define HCI_OUTGOING_PRE_BUFFER_SIZE 4 42 43 #define NVM_NUM_DEVICE_DB_ENTRIES 16 44 #define NVM_NUM_LINK_KEYS 16 45 46 // Mesh Configuration 47 #define ENABLE_MESH 48 #define ENABLE_MESH_ADV_BEARER 49 #define ENABLE_MESH_GATT_BEARER 50 #define ENABLE_MESH_PB_ADV 51 #define ENABLE_MESH_PB_GATT 52 #define ENABLE_MESH_PROVISIONER 53 #define ENABLE_MESH_PROXY_SERVER 54 55 #define MAX_NR_MESH_SUBNETS 2 56 #define MAX_NR_MESH_TRANSPORT_KEYS 16 57 #define MAX_NR_MESH_VIRTUAL_ADDRESSES 16 58 59 // allow for one NetKey update 60 #define MAX_NR_MESH_NETWORK_KEYS (MAX_NR_MESH_SUBNETS+1) 61 62 #endif 63 64