2020-01-22 15:24:13 +00:00
|
|
|
//
|
|
|
|
// btstack_config.h for most tests
|
|
|
|
//
|
|
|
|
|
2020-11-06 13:03:27 +00:00
|
|
|
#ifndef BTSTACK_CONFIG_H
|
|
|
|
#define BTSTACK_CONFIG_H
|
2020-01-22 15:24:13 +00:00
|
|
|
|
|
|
|
// Port related features
|
2020-11-06 13:03:27 +00:00
|
|
|
#define HAVE_BTSTACK_STDIN
|
|
|
|
#define HAVE_MALLOC
|
|
|
|
#define HAVE_POSIX_FILE_IO
|
|
|
|
#define HAVE_POSIX_TIME
|
2022-11-23 17:40:40 +00:00
|
|
|
#define HAVE_ASSERT
|
2020-01-22 15:24:13 +00:00
|
|
|
|
|
|
|
// BTstack features that can be enabled
|
2022-11-23 15:28:41 +00:00
|
|
|
#define ENABLE_CLASSIC
|
2020-01-22 15:24:13 +00:00
|
|
|
#define ENABLE_BLE
|
2020-11-06 13:03:27 +00:00
|
|
|
#define ENABLE_BTP
|
2021-11-19 09:09:49 +00:00
|
|
|
#define ENABLE_L2CAP_LE_CREDIT_BASED_FLOW_CONTROL_MODE
|
2022-11-23 15:42:53 +00:00
|
|
|
#define ENABLE_LE_CENTRAL
|
|
|
|
#define ENABLE_LE_DATA_LENGTH_EXTENSION
|
|
|
|
#define ENABLE_LE_EXTENDED_ADVERTISING
|
|
|
|
#define ENABLE_LE_ISOCHRONOUS_STREAMS
|
|
|
|
#define ENABLE_LE_PERIODIC_ADVERTISING
|
2020-01-22 15:24:13 +00:00
|
|
|
#define ENABLE_LE_PERIPHERAL
|
2020-08-31 12:27:41 +00:00
|
|
|
#define ENABLE_LE_SECURE_CONNECTIONS
|
2020-11-06 13:03:27 +00:00
|
|
|
#define ENABLE_LE_SIGNED_WRITE
|
|
|
|
#define ENABLE_LOG_ERROR
|
|
|
|
#define ENABLE_LOG_INFO
|
2020-08-31 12:27:41 +00:00
|
|
|
#define ENABLE_MICRO_ECC_FOR_LE_SECURE_CONNECTIONS
|
2020-11-06 13:06:41 +00:00
|
|
|
#define ENABLE_PRINTF_HEXDUMP
|
2021-01-29 13:41:39 +00:00
|
|
|
#define ENABLE_SOFTWARE_AES128
|
2020-01-22 15:24:13 +00:00
|
|
|
|
|
|
|
// BTstack configuration. buffers, sizes, ...
|
|
|
|
#define HCI_ACL_PAYLOAD_SIZE 1024
|
|
|
|
#define HCI_INCOMING_PRE_BUFFER_SIZE 6
|
|
|
|
#define NVM_NUM_DEVICE_DB_ENTRIES 4
|
2020-11-06 13:03:27 +00:00
|
|
|
#define NVM_NUM_LINK_KEYS 2
|
2020-01-22 15:24:13 +00:00
|
|
|
|
|
|
|
#endif
|