2016-04-22 16:28:04 +02:00
|
|
|
//
|
|
|
|
// btstack_config.h for generic POSIX H4 port
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef __BTSTACK_CONFIG
|
|
|
|
#define __BTSTACK_CONFIG
|
|
|
|
|
|
|
|
// Port related features
|
|
|
|
#define HAVE_MALLOC
|
|
|
|
#define HAVE_POSIX_FILE_IO
|
|
|
|
#define HAVE_POSIX_STDIN
|
|
|
|
#define HAVE_POSIX_TIME
|
|
|
|
|
|
|
|
// BTstack features that can be enabled
|
|
|
|
#define ENABLE_BLE
|
|
|
|
#define ENABLE_CLASSIC
|
2017-01-14 17:47:16 +01:00
|
|
|
#define ENABLE_LE_PERIPHERAL
|
|
|
|
#define ENABLE_LE_CENTRAL
|
2016-06-10 11:04:23 +02:00
|
|
|
#define ENABLE_LE_SECURE_CONNECTIONS
|
2016-04-22 16:28:04 +02:00
|
|
|
#define ENABLE_LOG_ERROR
|
|
|
|
#define ENABLE_LOG_INFO
|
|
|
|
#define ENABLE_SCO_OVER_HCI
|
|
|
|
#define ENABLE_SDP_DES_DUMP
|
|
|
|
|
|
|
|
// BTstack configuration. buffers, sizes, ...
|
|
|
|
#define HCI_INCOMING_PRE_BUFFER_SIZE 14 // sizeof benep heade, avoid memcpy
|
|
|
|
#define HCI_ACL_PAYLOAD_SIZE (1691 + 4)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|