btstack/port/nrf5x/btstack_config.h

31 lines
690 B
C
Raw Normal View History

//
// btstack_config.h for WICED port
//
2020-11-06 11:01:26 +00:00
#ifndef BTSTACK_CONFIG_H
#define BTSTACK_CONFIG_H
// Port related features
2016-03-30 09:06:56 +00:00
#define HAVE_EMBEDDED_TIME_MS
// BTstack features that can be enabled
#define ENABLE_BLE
#define ENABLE_CLASSIC
#define ENABLE_LE_CENTRAL
2020-11-06 11:01:26 +00:00
#define ENABLE_LE_PERIPHERAL
#define ENABLE_LOG_ERROR
2020-11-06 11:01:26 +00:00
#define ENABLE_LOG_INFO
2020-11-06 11:06:11 +00:00
#define ENABLE_PRINTF_HEXDUMP
// BTstack configuration. buffers, sizes, ...
#define HCI_ACL_PAYLOAD_SIZE 52
2020-11-06 11:01:26 +00:00
#define MAX_NR_GATT_CLIENTS 1
#define MAX_NR_HCI_CONNECTIONS 1
#define MAX_NR_L2CAP_CHANNELS 1
2020-11-06 11:01:26 +00:00
#define MAX_NR_L2CAP_SERVICES 12
#define MAX_NR_LE_DEVICE_DB_ENTRIES 1
2020-11-06 11:01:26 +00:00
#define MAX_NR_SM_LOOKUP_ENTRIES 3
#define MAX_NR_WHITELIST_ENTRIES 1
#endif