btstack/test/btstack_memory/btstack_config.h

30 lines
572 B
C
Raw Normal View History

2020-09-28 11:59:13 +02:00
//
// btstack_config.h for most tests
//
#ifndef BTSTACK_CONFIG_H
#define BTSTACK_CONFIG_H
2020-09-28 11:59:13 +02:00
// Port related features
#define HAVE_ASSERT
#define HAVE_BTSTACK_STDIN
#define HAVE_POSIX_FILE_IO
#define HAVE_POSIX_TIME
2020-09-28 11:59:13 +02:00
// BTstack features that can be enabled
#define ENABLE_BLE
#define ENABLE_CLASSIC
#define ENABLE_LOG_ERROR
#define ENABLE_LOG_INFO
2020-09-28 11:59:13 +02:00
// 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
2020-09-28 11:59:13 +02:00
#define MAX_NR_GATT_CLIENTS 4
#endif