xref: /btstack/test/btstack_config.h (revision 2539bee62fdca025ea003597dac8d060b8821540)
1*2539bee6SMatthias Ringwald //
2*2539bee6SMatthias Ringwald // btstack_config.h for Arduino port
3*2539bee6SMatthias Ringwald //
47907f069SMatthias Ringwald 
5*2539bee6SMatthias Ringwald #ifndef __BTSTACK_CONFIG
6*2539bee6SMatthias Ringwald #define __BTSTACK_CONFIG
7*2539bee6SMatthias Ringwald 
8*2539bee6SMatthias Ringwald // Port related features
97907f069SMatthias Ringwald #define HAVE_INIT_SCRIPT
107907f069SMatthias Ringwald #define HAVE_BZERO
117907f069SMatthias Ringwald #define HAVE_TIME
12*2539bee6SMatthias Ringwald #define HAVE_MALLOC
13*2539bee6SMatthias Ringwald 
14*2539bee6SMatthias Ringwald // BTstack features that can be enabled
157907f069SMatthias Ringwald #define ENABLE_BLE
167907f069SMatthias Ringwald #define ENABLE_LOG_DEBUG
177907f069SMatthias Ringwald #define ENABLE_LOG_ERROR
18*2539bee6SMatthias Ringwald #define ENABLE_LOG_INFO
19*2539bee6SMatthias Ringwald #define ENABLE_LOG_INTO_HCI_DUMP
20*2539bee6SMatthias Ringwald #define ENABLE_SDP_DES_DUMP
217907f069SMatthias Ringwald #define ENABLE_SDP_EXTRA_QUERIES
227907f069SMatthias Ringwald 
23*2539bee6SMatthias Ringwald // BTstack configuration. buffers, sizes, ...
247907f069SMatthias Ringwald #define HCI_ACL_PAYLOAD_SIZE 52
257907f069SMatthias Ringwald #define HCI_INCOMING_PRE_BUFFER_SIZE 4
267907f069SMatthias Ringwald 
277907f069SMatthias Ringwald #endif
28