2016-11-27 21:26:32 +01:00
|
|
|
//
|
2021-12-09 16:42:42 +01:00
|
|
|
// btstack_config.h for Windows H4 port
|
|
|
|
//
|
|
|
|
// Documentation: https://bluekitchen-gmbh.com/btstack/#how_to/
|
2016-11-27 21:26:32 +01:00
|
|
|
//
|
|
|
|
|
2020-11-06 12:01:26 +01:00
|
|
|
#ifndef BTSTACK_CONFIG_H
|
|
|
|
#define BTSTACK_CONFIG_H
|
2016-11-27 21:26:32 +01:00
|
|
|
|
|
|
|
// Port related features
|
2020-10-27 18:30:56 +01:00
|
|
|
#define HAVE_ASSERT
|
2020-11-06 12:01:26 +01:00
|
|
|
#define HAVE_BTSTACK_STDIN
|
2016-11-27 21:26:32 +01:00
|
|
|
#define HAVE_MALLOC
|
|
|
|
#define HAVE_POSIX_FILE_IO
|
|
|
|
#define HAVE_POSIX_TIME
|
|
|
|
|
|
|
|
// BTstack features that can be enabled
|
|
|
|
#define ENABLE_BLE
|
|
|
|
#define ENABLE_CLASSIC
|
2020-11-06 12:01:26 +01:00
|
|
|
#define ENABLE_CROSS_TRANSPORT_KEY_DERIVATION
|
2017-03-20 10:57:13 +01:00
|
|
|
#define ENABLE_HFP_WIDE_BAND_SPEECH
|
2019-06-08 22:48:30 +02:00
|
|
|
#define ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
|
2017-01-17 10:26:04 +01:00
|
|
|
#define ENABLE_LE_CENTRAL
|
2021-11-19 10:09:49 +01:00
|
|
|
#define ENABLE_L2CAP_LE_CREDIT_BASED_FLOW_CONTROL_MODE
|
2017-07-07 22:34:48 +02:00
|
|
|
#define ENABLE_LE_DATA_LENGTH_EXTENSION
|
2020-11-06 12:01:26 +01:00
|
|
|
#define ENABLE_LE_PERIPHERAL
|
2020-09-09 17:54:44 +02:00
|
|
|
#define ENABLE_LE_PRIVACY_ADDRESS_RESOLUTION
|
2020-11-06 12:01:26 +01:00
|
|
|
#define ENABLE_LE_SECURE_CONNECTIONS
|
2016-11-27 21:26:32 +01:00
|
|
|
#define ENABLE_LOG_ERROR
|
2020-11-06 12:01:26 +01:00
|
|
|
#define ENABLE_LOG_INFO
|
|
|
|
#define ENABLE_MICRO_ECC_FOR_LE_SECURE_CONNECTIONS
|
2020-11-06 12:06:11 +01:00
|
|
|
#define ENABLE_PRINTF_HEXDUMP
|
2016-11-27 21:26:32 +01:00
|
|
|
#define ENABLE_SCO_OVER_HCI
|
|
|
|
#define ENABLE_SDP_DES_DUMP
|
2020-01-16 15:29:48 +01:00
|
|
|
#define ENABLE_SOFTWARE_AES128
|
2016-11-27 21:26:32 +01:00
|
|
|
|
|
|
|
// BTstack configuration. buffers, sizes, ...
|
|
|
|
#define HCI_ACL_PAYLOAD_SIZE (1691 + 4)
|
|
|
|
#define HCI_INCOMING_PRE_BUFFER_SIZE 14 // sizeof BNEP header, avoid memcpy
|
|
|
|
|
2020-07-13 18:05:30 +02:00
|
|
|
#define NVM_NUM_DEVICE_DB_ENTRIES 16
|
2020-11-06 12:01:26 +01:00
|
|
|
#define NVM_NUM_LINK_KEYS 16
|
2019-07-20 09:32:04 +02:00
|
|
|
|
|
|
|
// Mesh Configuration
|
|
|
|
#define ENABLE_MESH
|
|
|
|
#define ENABLE_MESH_ADV_BEARER
|
|
|
|
#define ENABLE_MESH_GATT_BEARER
|
|
|
|
#define ENABLE_MESH_PB_ADV
|
|
|
|
#define ENABLE_MESH_PB_GATT
|
|
|
|
#define ENABLE_MESH_PROVISIONER
|
2020-11-06 12:01:26 +01:00
|
|
|
#define ENABLE_MESH_PROXY_SERVER
|
2019-07-20 09:32:04 +02:00
|
|
|
|
2020-11-06 12:01:26 +01:00
|
|
|
#define MAX_NR_MESH_SUBNETS 2
|
2019-07-20 09:32:04 +02:00
|
|
|
#define MAX_NR_MESH_TRANSPORT_KEYS 16
|
|
|
|
#define MAX_NR_MESH_VIRTUAL_ADDRESSES 16
|
|
|
|
|
|
|
|
// allow for one NetKey update
|
|
|
|
#define MAX_NR_MESH_NETWORK_KEYS (MAX_NR_MESH_SUBNETS+1)
|
|
|
|
|
|
|
|
|
2016-11-27 21:26:32 +01:00
|
|
|
#endif
|