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-05-28 21:49:38 +02:00
|
|
|
#define ENABLE_MESH_GATT_BEARER
|
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
|
|
|
|
|
|
|
|
#define MAX_NR_LE_DEVICE_DB_ENTRIES 4
|
2019-06-11 14:07:07 +02:00
|
|
|
#define MAX_NR_MESH_TRANSPORT_KEYS 16
|
2019-06-11 17:14:00 +02:00
|
|
|
#define MAX_NR_MESH_VIRTUAL_ADDRESSES 16
|
2018-10-05 15:13:34 +02:00
|
|
|
|
|
|
|
#define NVM_NUM_LINK_KEYS 2
|
|
|
|
|
|
|
|
#endif
|