xref: /btstack/port/windows-h4/btstack_config.h (revision 3c07636cece7e6169032e080b1d76e9475bb59d7)
14e630824SMatthias Ringwald //
2077fecbbSMilanka Ringwald // btstack_config.h for Windows H4 port
3077fecbbSMilanka Ringwald //
4077fecbbSMilanka Ringwald // Documentation: https://bluekitchen-gmbh.com/btstack/#how_to/
54e630824SMatthias Ringwald //
64e630824SMatthias Ringwald 
736327e5aSMilanka Ringwald #ifndef BTSTACK_CONFIG_H
836327e5aSMilanka Ringwald #define BTSTACK_CONFIG_H
94e630824SMatthias Ringwald 
104e630824SMatthias Ringwald // Port related features
11d20e3046SMatthias Ringwald #define HAVE_ASSERT
1236327e5aSMilanka Ringwald #define HAVE_BTSTACK_STDIN
134e630824SMatthias Ringwald #define HAVE_MALLOC
144e630824SMatthias Ringwald #define HAVE_POSIX_FILE_IO
154e630824SMatthias Ringwald #define HAVE_POSIX_TIME
164e630824SMatthias Ringwald 
174e630824SMatthias Ringwald // BTstack features that can be enabled
18b2b52d42SMatthias Ringwald #define ENABLE_AVRCP_COVER_ART
194e630824SMatthias Ringwald #define ENABLE_BLE
204e630824SMatthias Ringwald #define ENABLE_CLASSIC
2136327e5aSMilanka Ringwald #define ENABLE_CROSS_TRANSPORT_KEY_DERIVATION
22*3c07636cSMatthias Ringwald #define ENABLE_GOEP_L2CAP
231bbecc2bSMatthias Ringwald #define ENABLE_HFP_WIDE_BAND_SPEECH
24b5674ee2SMatthias Ringwald #define ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
25b28dc800SMatthias Ringwald #define ENABLE_L2CAP_LE_CREDIT_BASED_FLOW_CONTROL_MODE
26b2b52d42SMatthias Ringwald #define ENABLE_LE_CENTRAL
27b435e062SMatthias Ringwald #define ENABLE_LE_DATA_LENGTH_EXTENSION
2836327e5aSMilanka Ringwald #define ENABLE_LE_PERIPHERAL
29b596325dSMatthias Ringwald #define ENABLE_LE_PRIVACY_ADDRESS_RESOLUTION
3036327e5aSMilanka Ringwald #define ENABLE_LE_SECURE_CONNECTIONS
314e630824SMatthias Ringwald #define ENABLE_LOG_ERROR
324e630824SMatthias Ringwald #define ENABLE_LOG_INFO
3336327e5aSMilanka Ringwald #define ENABLE_MICRO_ECC_FOR_LE_SECURE_CONNECTIONS
34606ccc9bSMilanka Ringwald #define ENABLE_PRINTF_HEXDUMP
354e630824SMatthias Ringwald #define ENABLE_SCO_OVER_HCI
364e630824SMatthias Ringwald #define ENABLE_SDP_DES_DUMP
377cdc89a5SMatthias Ringwald #define ENABLE_SOFTWARE_AES128
384e630824SMatthias Ringwald 
394e630824SMatthias Ringwald // BTstack configuration. buffers, sizes, ...
404e630824SMatthias Ringwald #define HCI_ACL_PAYLOAD_SIZE (1691 + 4)
414e630824SMatthias Ringwald #define HCI_INCOMING_PRE_BUFFER_SIZE 14 // sizeof BNEP header, avoid memcpy
424e630824SMatthias Ringwald 
43dbe92de6SMatthias Ringwald #define NVM_NUM_DEVICE_DB_ENTRIES      16
4436327e5aSMilanka Ringwald #define NVM_NUM_LINK_KEYS              16
45e514a7f5SMatthias Ringwald 
46e514a7f5SMatthias Ringwald // Mesh Configuration
47e514a7f5SMatthias Ringwald #define ENABLE_MESH
48e514a7f5SMatthias Ringwald #define ENABLE_MESH_ADV_BEARER
49e514a7f5SMatthias Ringwald #define ENABLE_MESH_GATT_BEARER
50e514a7f5SMatthias Ringwald #define ENABLE_MESH_PB_ADV
51e514a7f5SMatthias Ringwald #define ENABLE_MESH_PB_GATT
52e514a7f5SMatthias Ringwald #define ENABLE_MESH_PROVISIONER
5336327e5aSMilanka Ringwald #define ENABLE_MESH_PROXY_SERVER
54e514a7f5SMatthias Ringwald 
5536327e5aSMilanka Ringwald #define MAX_NR_MESH_SUBNETS            2
56e514a7f5SMatthias Ringwald #define MAX_NR_MESH_TRANSPORT_KEYS    16
57e514a7f5SMatthias Ringwald #define MAX_NR_MESH_VIRTUAL_ADDRESSES 16
58e514a7f5SMatthias Ringwald 
59e514a7f5SMatthias Ringwald // allow for one NetKey update
60e514a7f5SMatthias Ringwald #define MAX_NR_MESH_NETWORK_KEYS      (MAX_NR_MESH_SUBNETS+1)
61e514a7f5SMatthias Ringwald 
62e514a7f5SMatthias Ringwald 
634e630824SMatthias Ringwald #endif
64