mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-01 00:28:18 +00:00
30 lines
634 B
C
30 lines
634 B
C
//
|
|
// btstack_config.h for Arduino port
|
|
//
|
|
|
|
#ifndef __BTSTACK_CONFIG
|
|
#define __BTSTACK_CONFIG
|
|
|
|
// Port related features
|
|
#define HAVE_MALLOC
|
|
#define HAVE_POSIX_TIME
|
|
#define HAVE_POSIX_FILE_IO
|
|
#define HAVE_POSIX_STDIN
|
|
|
|
// BTstack features that can be enabled
|
|
#define ENABLE_BLE
|
|
#define ENABLE_CLASSIC
|
|
#define ENABLE_LOG_DEBUG
|
|
#define ENABLE_LOG_ERROR
|
|
#define ENABLE_LOG_INFO
|
|
#define ENABLE_LOG_INTO_HCI_DUMP
|
|
#define ENABLE_SDP_DES_DUMP
|
|
#define ENABLE_SDP_EXTRA_QUERIES
|
|
// #define ENABLE_LE_SECURE_CONNECTIONS
|
|
|
|
// BTstack configuration. buffers, sizes, ...
|
|
#define HCI_ACL_PAYLOAD_SIZE 52
|
|
#define HCI_INCOMING_PRE_BUFFER_SIZE 4
|
|
|
|
#endif
|