2018-10-05 15:13:34 +02:00
|
|
|
//
|
|
|
|
// btstack_config.h for most tests
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef __BTSTACK_CONFIG
|
|
|
|
#define __BTSTACK_CONFIG
|
|
|
|
|
|
|
|
// Port related features
|
|
|
|
#define HAVE_MALLOC
|
|
|
|
#define HAVE_POSIX_TIME
|
|
|
|
#define HAVE_POSIX_FILE_IO
|
|
|
|
#define HAVE_BTSTACK_STDIN
|
|
|
|
|
|
|
|
// BTstack features that can be enabled
|
|
|
|
#define ENABLE_BLE
|
|
|
|
#define ENABLE_LE_PERIPHERAL
|
|
|
|
#define ENABLE_LE_CENTRAL
|
|
|
|
// #define ENABLE_LOG_DEBUG
|
|
|
|
#define ENABLE_LOG_ERROR
|
|
|
|
#define ENABLE_LOG_INFO
|
|
|
|
#define ENABLE_MICRO_ECC_P256
|
2019-06-14 12:16:16 +02:00
|
|
|
|
|
|
|
// Mesh Config
|
2019-06-27 11:39:11 +02:00
|
|
|
#define ENABLE_MESH_ADV_BEARER
|
2019-05-28 21:49:38 +02:00
|
|
|
#define ENABLE_MESH_GATT_BEARER
|
2019-06-14 12:16:16 +02:00
|
|
|
// #define ENABLE_MESH_PB_ADV
|
|
|
|
#define ENABLE_MESH_PB_GATT
|
|
|
|
#define ENABLE_MESH_PROXY_SERVER
|
2018-11-07 14:30:43 +01:00
|
|
|
|
|
|
|
#define ENABLE_MESH
|
2018-10-05 15:13:34 +02:00
|
|
|
#define ENABLE_MESH_PROVISIONER
|
|
|
|
|
|
|
|
// BTstack configuration. buffers, sizes, ...
|
|
|
|
#define HCI_ACL_PAYLOAD_SIZE 1000
|
|
|
|
#define HCI_INCOMING_PRE_BUFFER_SIZE 4
|
|
|
|
|
2019-06-13 17:09:39 +02:00
|
|
|
#define MAX_NR_LE_DEVICE_DB_ENTRIES 4
|
|
|
|
#define MAX_NR_MESH_TRANSPORT_KEYS 16
|
2019-06-11 17:14:00 +02:00
|
|
|
#define MAX_NR_MESH_VIRTUAL_ADDRESSES 16
|
2019-07-02 14:34:49 +02:00
|
|
|
#define MAX_NR_MESH_SUBNETS 2
|
|
|
|
|
|
|
|
// allow for one NetKey update
|
|
|
|
#define MAX_NR_MESH_NETWORK_KEYS (MAX_NR_MESH_SUBNETS+1)
|
2018-10-05 15:13:34 +02:00
|
|
|
|
|
|
|
#define NVM_NUM_LINK_KEYS 2
|
|
|
|
|
|
|
|
#endif
|