btstack/test/gatt_server/btstack_config.h

40 lines
924 B
C
Raw Normal View History

2019-09-23 09:03:53 +00:00
//
// btstack_config.h for most tests
//
#ifndef BTSTACK_CONFIG_H
#define BTSTACK_CONFIG_H
2019-09-23 09:03:53 +00:00
// Port related features
#define HAVE_BTSTACK_STDIN
2019-09-23 09:03:53 +00:00
#define HAVE_MALLOC
#define HAVE_POSIX_FILE_IO
#define HAVE_POSIX_TIME
2019-09-23 09:03:53 +00:00
// BTstack features that can be enabled
2020-11-06 13:06:41 +00:00
#define ENABLE_ATT_DELAYED_RESPONSE
2019-09-23 09:03:53 +00:00
#define ENABLE_BLE
#define ENABLE_CLASSIC
#define ENABLE_MICRO_ECC_FOR_LE_SECURE_CONNECTIONS
#define ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
#define ENABLE_LE_CENTRAL
#define ENABLE_LE_PERIPHERAL
#define ENABLE_LE_SECURE_CONNECTIONS
#define ENABLE_LE_SIGNED_WRITE
2019-09-23 09:03:53 +00:00
#define ENABLE_LOG_ERROR
#define ENABLE_LOG_INFO
2020-11-06 13:06:41 +00:00
#define ENABLE_PRINTF_HEXDUMP
2019-09-23 09:03:53 +00:00
#define ENABLE_SDP_DES_DUMP
#define ENABLE_SDP_EXTRA_QUERIES
#define ENABLE_SOFTWARE_AES128
2019-09-23 09:03:53 +00:00
// BTstack configuration. buffers, sizes, ...
#define HCI_ACL_PAYLOAD_SIZE 52
#define HCI_INCOMING_PRE_BUFFER_SIZE 4
#define MAX_NR_LE_DEVICE_DB_ENTRIES 4
#define NVM_NUM_LINK_KEYS 2
#endif