2016-01-21 20:56:56 +00:00
|
|
|
//
|
|
|
|
// btstack_config.h for POSIX TI WL183x port
|
|
|
|
//
|
2014-10-14 20:00:04 +00:00
|
|
|
|
|
|
|
#ifndef __BTSTACK_CONFIG
|
|
|
|
#define __BTSTACK_CONFIG
|
|
|
|
|
2016-01-21 20:56:56 +00:00
|
|
|
// Port related features
|
|
|
|
#define HAVE_BZERO
|
|
|
|
#define HAVE_MALLOC
|
|
|
|
#define HAVE_SCO
|
|
|
|
#define HAVE_SCO_OVER_HCI
|
2013-06-10 10:43:53 +00:00
|
|
|
#define HAVE_SO_NOSIGPIPE
|
|
|
|
#define HAVE_TIME
|
2016-01-21 20:56:56 +00:00
|
|
|
|
|
|
|
// BTstack features that can be enabled
|
|
|
|
#define ENABLE_BLE
|
2013-06-10 10:43:53 +00:00
|
|
|
#define ENABLE_LOG_ERROR
|
2016-01-21 20:56:56 +00:00
|
|
|
#define ENABLE_LOG_INFO
|
2016-01-21 20:27:06 +00:00
|
|
|
#define ENABLE_LOG_INTO_HCI_DUMP
|
2016-01-21 14:33:36 +00:00
|
|
|
#define ENABLE_SDP_DES_DUMP
|
2014-10-14 20:00:04 +00:00
|
|
|
|
2016-01-21 20:56:56 +00:00
|
|
|
// BTstack configuration. buffers, sizes, ...
|
|
|
|
#define HCI_INCOMING_PRE_BUFFER_SIZE 14 // sizeof benep heade, avoid memcpy
|
|
|
|
#define HCI_ACL_PAYLOAD_SIZE (1691 + 4)
|
2015-11-06 15:27:14 +00:00
|
|
|
|
2014-11-12 00:12:18 +00:00
|
|
|
#endif
|
2016-01-21 20:56:56 +00:00
|
|
|
|