2018-07-24 18:55:40 +00:00
|
|
|
//
|
|
|
|
// btstack_config.h for generic POSIX H4 port
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef __BTSTACK_CONFIG
|
|
|
|
#define __BTSTACK_CONFIG
|
|
|
|
|
|
|
|
// Port related features
|
|
|
|
#define HAVE_MALLOC
|
|
|
|
#define HAVE_POSIX_FILE_IO
|
|
|
|
#define HAVE_BTSTACK_STDIN
|
|
|
|
|
|
|
|
// BTstack features that can be enabled
|
|
|
|
#define ENABLE_BLE
|
|
|
|
#define ENABLE_CLASSIC
|
|
|
|
#define ENABLE_HFP_WIDE_BAND_SPEECH
|
2018-10-29 08:58:48 +00:00
|
|
|
#define ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
|
2018-07-24 18:55:40 +00:00
|
|
|
#define ENABLE_LE_CENTRAL
|
|
|
|
#define ENABLE_LE_PERIPHERAL
|
|
|
|
#define ENABLE_LE_SECURE_CONNECTIONS
|
|
|
|
#define ENABLE_MICRO_ECC_FOR_LE_SECURE_CONNECTIONS
|
|
|
|
#define ENABLE_LE_DATA_CHANNELS
|
|
|
|
#define ENABLE_LE_DATA_LENGTH_EXTENSION
|
|
|
|
#define ENABLE_LOG_ERROR
|
|
|
|
#define ENABLE_LOG_INFO
|
|
|
|
#define ENABLE_SCO_OVER_HCI
|
|
|
|
#define ENABLE_SDP_DES_DUMP
|
|
|
|
|
2019-11-04 21:23:45 +00:00
|
|
|
// Warm Boot needed if connected via Wifi on Raspberry Pi 3A+ or 3B+
|
|
|
|
// #define ENABLE_CONTROLLER_WARM_BOOT
|
|
|
|
|
2018-07-24 18:55:40 +00:00
|
|
|
// BTstack configuration. buffers, sizes, ...
|
|
|
|
#define HCI_INCOMING_PRE_BUFFER_SIZE 14 // sizeof benep heade, avoid memcpy
|
|
|
|
#define HCI_ACL_PAYLOAD_SIZE (1691 + 4)
|
|
|
|
|
2019-11-08 13:03:22 +00:00
|
|
|
#define NVM_NUM_DEVICE_DB_ENTRIES 20
|
|
|
|
|
2019-07-20 07:32:04 +00: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_PROXY_SERVER
|
|
|
|
#define ENABLE_MESH_PROVISIONER
|
|
|
|
|
|
|
|
#define MAX_NR_MESH_TRANSPORT_KEYS 16
|
|
|
|
#define MAX_NR_MESH_VIRTUAL_ADDRESSES 16
|
|
|
|
#define MAX_NR_MESH_SUBNETS 2
|
|
|
|
|
|
|
|
// allow for one NetKey update
|
|
|
|
#define MAX_NR_MESH_NETWORK_KEYS (MAX_NR_MESH_SUBNETS+1)
|
|
|
|
|
2018-07-24 18:55:40 +00:00
|
|
|
#endif
|
|
|
|
|