2020-09-28 11:59:13 +02:00
|
|
|
//
|
|
|
|
// btstack_config.h for most tests
|
|
|
|
//
|
|
|
|
|
2020-11-06 14:03:27 +01:00
|
|
|
#ifndef BTSTACK_CONFIG_H
|
|
|
|
#define BTSTACK_CONFIG_H
|
2020-09-28 11:59:13 +02:00
|
|
|
|
|
|
|
// Port related features
|
|
|
|
#define HAVE_BTSTACK_STDIN
|
2020-11-06 14:03:27 +01:00
|
|
|
#define HAVE_POSIX_FILE_IO
|
|
|
|
#define HAVE_POSIX_TIME
|
2021-01-28 15:20:28 +01:00
|
|
|
#define HAVE_MALLOC
|
2020-09-28 11:59:13 +02:00
|
|
|
|
|
|
|
// BTstack features that can be enabled
|
|
|
|
#define ENABLE_BLE
|
|
|
|
#define ENABLE_CLASSIC
|
|
|
|
#define ENABLE_LOG_ERROR
|
2020-11-06 14:03:27 +01:00
|
|
|
#define ENABLE_LOG_INFO
|
2020-11-06 14:06:41 +01:00
|
|
|
#define ENABLE_PRINTF_HEXDUMP
|
2020-09-28 11:59:13 +02:00
|
|
|
|
|
|
|
// BTstack configuration. buffers, sizes, ...
|
|
|
|
#define HCI_ACL_PAYLOAD_SIZE 1024
|
|
|
|
#define HCI_INCOMING_PRE_BUFFER_SIZE 6
|
|
|
|
|
2021-01-28 15:20:28 +01:00
|
|
|
// test hook to mock malloc
|
|
|
|
#define malloc test_malloc
|
2020-09-28 11:59:13 +02:00
|
|
|
|
|
|
|
#endif
|