mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-17 07:19:42 +00:00
37 lines
894 B
C
37 lines
894 B
C
//
|
|
// btstack_config.h
|
|
//
|
|
|
|
#ifndef BTSTACK_CONFIG_H
|
|
#define BTSTACK_CONFIG_H
|
|
|
|
// Port related features
|
|
#define HAVE_EMBEDDED_TIME_MS
|
|
|
|
// BTstack features that can be enabled
|
|
#define ENABLE_BLE
|
|
#define ENABLE_BTSTACK_ASSERT
|
|
#define ENABLE_LE_PERIPHERAL
|
|
#define ENABLE_LE_SECURE_CONNECTIONS
|
|
#define ENABLE_LOG_ERROR
|
|
#define ENABLE_LOG_INFO
|
|
#define ENABLE_MICRO_ECC_P256
|
|
#define ENABLE_PRINTF_HEXDUMP
|
|
#define ENABLE_SEGGER_RTT
|
|
#define ENABLE_SOFTWARE_AES128
|
|
|
|
// BTstack configuration. buffers, sizes, ...
|
|
#define HCI_ACL_PAYLOAD_SIZE (512 + 4) //Max official att size + l2cap header size
|
|
#define MAX_NR_GATT_CLIENTS 1
|
|
#define MAX_NR_HCI_CONNECTIONS 1
|
|
#define MAX_NR_L2CAP_CHANNELS 1
|
|
#define MAX_NR_L2CAP_SERVICES 1
|
|
#define MAX_NR_LE_DEVICE_DB_ENTRIES 1
|
|
#define MAX_NR_SM_LOOKUP_ENTRIES 3
|
|
#define MAX_NR_WHITELIST_ENTRIES 1
|
|
|
|
// LE Device DB using TLV
|
|
#define NVM_NUM_DEVICE_DB_ENTRIES 16
|
|
|
|
#endif
|