1 // 2 // btstack_config.h for most tests 3 // 4 5 #ifndef BTSTACK_CONFIG_H 6 #define BTSTACK_CONFIG_H 7 8 // Port related features 9 #define HAVE_BTSTACK_STDIN 10 #define HAVE_MALLOC 11 #define HAVE_POSIX_FILE_IO 12 #define HAVE_POSIX_TIME 13 14 15 // BTstack features that can be enabled 16 #define ENABLE_BLE 17 #define ENABLE_LOG_ERROR 18 #define ENABLE_LOG_INFO 19 #define ENABLE_PRINTF_HEXDUMP 20 21 #define ENABLE_LE_CENTRAL 22 #define ENABLE_LE_PERIPHERAL 23 #define ENABLE_L2CAP_LE_CREDIT_BASED_FLOW_CONTROL_MODE 24 25 // for ready-to-use hci channels 26 #define FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION 27 28 // BTstack configuration. buffers, sizes, ... 29 #define HCI_ACL_PAYLOAD_SIZE 52 30 #define HCI_INCOMING_PRE_BUFFER_SIZE 4 31 32 #endif 33