btstack/test/btstack_config.h

36 lines
839 B
C
Raw Normal View History

//
2017-01-14 22:24:22 +01:00
// btstack_config.h for most tests
//
2012-01-20 22:53:32 +00:00
#ifndef __BTSTACK_CONFIG
#define __BTSTACK_CONFIG
// Port related features
#define HAVE_MALLOC
2016-10-03 11:26:44 +02:00
#define HAVE_POSIX_TIME
#define HAVE_POSIX_FILE_IO
#define HAVE_BTSTACK_STDIN
2012-01-20 22:53:32 +00:00
// BTstack features that can be enabled
#define ENABLE_BLE
2016-03-28 12:48:00 +02:00
#define ENABLE_CLASSIC
// #define ENABLE_LOG_DEBUG
2015-07-10 17:01:51 +02:00
#define ENABLE_LOG_ERROR
#define ENABLE_LOG_INFO
#define ENABLE_SDP_DES_DUMP
2016-01-21 15:33:36 +01:00
#define ENABLE_SDP_EXTRA_QUERIES
2016-06-10 13:47:11 +02:00
// #define ENABLE_LE_SECURE_CONNECTIONS
2017-01-13 19:30:00 +01:00
#define ENABLE_LE_SIGNED_WRITE
2017-01-14 22:24:22 +01:00
#define ENABLE_LE_PERIPHERAL
#define ENABLE_LE_CENTRAL
#define ENABLE_SDP_EXTRA_QUERIES
#define ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
2012-01-20 22:53:32 +00:00
// BTstack configuration. buffers, sizes, ...
2017-12-13 14:31:44 +01:00
#define HCI_ACL_PAYLOAD_SIZE 1024
2017-12-13 16:52:44 +01:00
#define HCI_INCOMING_PRE_BUFFER_SIZE 6
#define NVM_NUM_LINK_KEYS 2
2017-08-14 16:45:48 +02:00
#define NVM_NUM_DEVICE_DB_ENTRIES 4
#endif