mirror of
https://github.com/bluekitchen/btstack.git
synced 2024-12-29 09:26:08 +00:00
41 lines
1.0 KiB
C
41 lines
1.0 KiB
C
//
|
|
// btstack_config.h for most tests
|
|
//
|
|
|
|
#ifndef BTSTACK_CONFIG_H
|
|
#define BTSTACK_CONFIG_H
|
|
|
|
// Port related features
|
|
#define HAVE_BTSTACK_STDIN
|
|
#define HAVE_MALLOC
|
|
#define HAVE_POSIX_FILE_IO
|
|
#define HAVE_POSIX_TIME
|
|
#define HAVE_ASSERT
|
|
|
|
// BTstack features that can be enabled
|
|
#define ENABLE_CLASSIC
|
|
#define ENABLE_BLE
|
|
#define ENABLE_BTP
|
|
#define ENABLE_L2CAP_LE_CREDIT_BASED_FLOW_CONTROL_MODE
|
|
#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
|
|
#define ENABLE_LE_PERIPHERAL
|
|
#define ENABLE_LE_SECURE_CONNECTIONS
|
|
#define ENABLE_LE_SIGNED_WRITE
|
|
#define ENABLE_LOG_ERROR
|
|
#define ENABLE_LOG_INFO
|
|
#define ENABLE_MICRO_ECC_FOR_LE_SECURE_CONNECTIONS
|
|
#define ENABLE_PRINTF_HEXDUMP
|
|
#define ENABLE_SOFTWARE_AES128
|
|
|
|
// BTstack configuration. buffers, sizes, ...
|
|
#define HCI_ACL_PAYLOAD_SIZE 1024
|
|
#define HCI_INCOMING_PRE_BUFFER_SIZE 6
|
|
#define NVM_NUM_DEVICE_DB_ENTRIES 4
|
|
#define NVM_NUM_LINK_KEYS 2
|
|
|
|
#endif
|