60 lines
1.6 KiB
C
60 lines
1.6 KiB
C
|
//
|
||
|
// btstack_config.h for generic POSIX H4 port
|
||
|
//
|
||
|
|
||
|
#ifndef BTSTACK_CONFIG_H
|
||
|
#define BTSTACK_CONFIG_H
|
||
|
|
||
|
// Port related features
|
||
|
#define HAVE_ASSERT
|
||
|
#define HAVE_BTSTACK_STDIN
|
||
|
#define HAVE_EM9304_PATCH_CONTAINER
|
||
|
#define HAVE_MALLOC
|
||
|
#define HAVE_POSIX_FILE_IO
|
||
|
#define HAVE_POSIX_TIME
|
||
|
|
||
|
// BTstack features that can be enabled
|
||
|
#define ENABLE_ATT_DELAYED_RESPONSE
|
||
|
#define ENABLE_BLE
|
||
|
#define ENABLE_CLASSIC
|
||
|
#define ENABLE_CROSS_TRANSPORT_KEY_DERIVATION
|
||
|
#define ENABLE_HFP_WIDE_BAND_SPEECH
|
||
|
#define ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
|
||
|
#define ENABLE_LE_CENTRAL
|
||
|
#define ENABLE_LE_DATA_CHANNELS
|
||
|
#define ENABLE_LE_DATA_LENGTH_EXTENSION
|
||
|
#define ENABLE_LE_PERIPHERAL
|
||
|
#define ENABLE_LE_PRIVACY_ADDRESS_RESOLUTION
|
||
|
#define ENABLE_LE_SECURE_CONNECTIONS
|
||
|
#define ENABLE_LOG_ERROR
|
||
|
#define ENABLE_LOG_INFO
|
||
|
#define ENABLE_MICRO_ECC_FOR_LE_SECURE_CONNECTIONS
|
||
|
#define ENABLE_PRINTF_HEXDUMP
|
||
|
#define ENABLE_SCO_OVER_HCI
|
||
|
#define ENABLE_SDP_DES_DUMP
|
||
|
#define ENABLE_SOFTWARE_AES128
|
||
|
|
||
|
// BTstack configuration. buffers, sizes, ...
|
||
|
#define HCI_ACL_PAYLOAD_SIZE (1691 + 4)
|
||
|
#define HCI_INCOMING_PRE_BUFFER_SIZE 14 // sizeof benep heade, avoid memcpy
|
||
|
|
||
|
#define NVM_NUM_DEVICE_DB_ENTRIES 16
|
||
|
#define NVM_NUM_LINK_KEYS 16
|
||
|
|
||
|
// 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
|
||
|
#define ENABLE_MESH_PROXY_SERVER
|
||
|
|
||
|
#define MAX_NR_MESH_SUBNETS 2
|
||
|
#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)
|
||
|
|
||
|
#endif
|