btstack/port/arduino/btstack_config.h

31 lines
697 B
C
Raw Normal View History

//
// btstack_config.h for Arduino port
//
2020-11-06 12:01:26 +01:00
#ifndef BTSTACK_CONFIG_H
#define BTSTACK_CONFIG_H
2015-07-09 15:34:22 +02:00
// Port related features
2016-03-30 11:06:56 +02:00
#define HAVE_EMBEDDED_TIME_MS
2016-01-21 21:56:56 +01:00
// BTstack features that can be enabled
2016-01-21 15:33:36 +01:00
#define ENABLE_BLE
#define ENABLE_LE_CENTRAL
2020-11-06 12:01:26 +01:00
#define ENABLE_LE_PERIPHERAL
#define ENABLE_LOG_ERROR
#define ENABLE_LOG_INFO
2020-11-06 12:06:11 +01:00
#define ENABLE_PRINTF_HEXDUMP
2016-01-21 21:56:56 +01:00
// BTstack configuration. buffers, sizes, ...
2015-05-21 15:54:06 +02:00
#define HCI_ACL_PAYLOAD_SIZE 200
2020-11-06 12:01:26 +01:00
#define MAX_ATT_DB_SIZE 200
#define MAX_NR_GATT_CLIENTS 1
2016-03-28 12:05:33 +02:00
#define MAX_NR_HCI_CONNECTIONS 1
#define MAX_NR_L2CAP_CHANNELS 0
2020-11-06 12:01:26 +01:00
#define MAX_NR_L2CAP_SERVICES 0
#define MAX_NR_LE_DEVICE_DB_ENTRIES 1
2020-11-06 12:01:26 +01:00
#define MAX_NR_SM_LOOKUP_ENTRIES 3
#define MAX_NR_WHITELIST_ENTRIES 1
#endif