2018-10-05 15:13:34 +02:00
|
|
|
//
|
|
|
|
// btstack_config.h for most tests
|
|
|
|
//
|
|
|
|
|
2020-11-06 14:03:27 +01:00
|
|
|
#ifndef BTSTACK_CONFIG_H
|
|
|
|
#define BTSTACK_CONFIG_H
|
2018-10-05 15:13:34 +02:00
|
|
|
|
|
|
|
// Port related features
|
2020-11-06 14:03:27 +01:00
|
|
|
#define HAVE_BTSTACK_STDIN
|
2018-10-05 15:13:34 +02:00
|
|
|
#define HAVE_MALLOC
|
|
|
|
#define HAVE_POSIX_FILE_IO
|
2020-11-06 14:03:27 +01:00
|
|
|
#define HAVE_POSIX_TIME
|
2018-10-05 15:13:34 +02:00
|
|
|
|
|
|
|
// BTstack features that can be enabled
|
|
|
|
#define ENABLE_BLE
|
|
|
|
#define ENABLE_LE_CENTRAL
|
2020-11-06 14:03:27 +01:00
|
|
|
#define ENABLE_LE_PERIPHERAL
|
2018-10-05 15:13:34 +02:00
|
|
|
#define ENABLE_LOG_ERROR
|
2020-11-06 14:03:27 +01:00
|
|
|
#define ENABLE_LOG_INFO
|
2018-10-05 15:13:34 +02:00
|
|
|
#define ENABLE_MICRO_ECC_P256
|
2020-11-06 14:06:41 +01:00
|
|
|
#define ENABLE_PRINTF_HEXDUMP
|
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-07-16 16:48:34 +02:00
|
|
|
#define ENABLE_MESH_PB_ADV
|
2019-06-14 12:16:16 +02:00
|
|
|
#define ENABLE_MESH_PB_GATT
|
|
|
|
#define ENABLE_MESH_PROXY_SERVER
|
2019-08-16 17:08:39 +02:00
|
|
|
#define ENABLE_MESH_RELAY
|
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
|
2020-11-06 14:03:27 +01:00
|
|
|
#define MAX_NR_MESH_SUBNETS 2
|
2019-06-13 17:09:39 +02:00
|
|
|
#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
|
|
|
|
|
|
|
// 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
|