btstack/port/libusb/btstack_config.h

35 lines
850 B
C
Raw Normal View History

2016-01-21 20:56:56 +00:00
//
// btstack_config.h for libusb port
//
#ifndef __BTSTACK_CONFIG
#define __BTSTACK_CONFIG
2016-01-21 20:56:56 +00:00
// Port related features
#define HAVE_MALLOC
2016-03-28 14:26:37 +00:00
#define HAVE_POSIX_FILE_IO
#define HAVE_BTSTACK_STDIN
2016-03-30 08:59:47 +00:00
#define HAVE_POSIX_TIME
2016-01-21 20:56:56 +00:00
// BTstack features that can be enabled
#define ENABLE_BLE
2016-01-24 17:09:29 +00:00
#define ENABLE_CLASSIC
#define ENABLE_HFP_WIDE_BAND_SPEECH
#define ENABLE_LE_CENTRAL
#define ENABLE_LE_PERIPHERAL
#define ENABLE_LE_SECURE_CONNECTIONS
#define ENABLE_MICRO_ECC_FOR_LE_SECURE_CONNECTIONS
#define ENABLE_LE_DATA_LENGTH_EXTENSION
2016-01-21 20:56:56 +00:00
#define ENABLE_LOG_ERROR
#define ENABLE_LOG_INFO
#define ENABLE_SCO_OVER_HCI
2016-01-21 20:56:56 +00:00
#define ENABLE_SDP_DES_DUMP
// #define ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
2016-01-21 20:56:56 +00:00
// BTstack configuration. buffers, sizes, ...
#define HCI_ACL_PAYLOAD_SIZE (1691 + 4)
#define HCI_INCOMING_PRE_BUFFER_SIZE 14 // sizeof BNEP header, avoid memcpy
#endif