xref: /btstack/test/security_manager/btstack_config.h (revision a8d51f092f1b660d0f6921369ad2bc3f9368296c)
1 //
2 // btstack_config.h for most tests
3 //
4 
5 #ifndef __BTSTACK_CONFIG
6 #define __BTSTACK_CONFIG
7 
8 // Port related features
9 #define HAVE_MALLOC
10 #define HAVE_EMBEDDED_TIME_MS
11 #define HAVE_POSIX_FILE_IO
12 #define HAVE_BTSTACK_STDIN
13 
14 // BTstack features that can be enabled
15 #define ENABLE_BLE
16 #define ENABLE_LOG_ERROR
17 #define ENABLE_LOG_INFO
18 //#define ENABLE_MICRO_ECC_FOR_LE_SECURE_CONNECTIONS
19 #define ENABLE_LE_SECURE_CONNECTIONS
20 #define ENABLE_LE_SIGNED_WRITE
21 #define ENABLE_LE_PERIPHERAL
22 #define ENABLE_LE_CENTRAL
23 #define ENABLE_SDP_EXTRA_QUERIES
24 #define ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
25 
26 // BTstack configuration. buffers, sizes, ...
27 #define HCI_ACL_PAYLOAD_SIZE 69
28 #define HCI_INCOMING_PRE_BUFFER_SIZE 4
29 
30 #define MAX_NR_LE_DEVICE_DB_ENTRIES 4
31 
32 #define NVM_NUM_LINK_KEYS 2
33 
34 #endif
35