1*6d34f98eSMatthias Ringwald // 2*6d34f98eSMatthias Ringwald // btstack_config.h for most tests 3*6d34f98eSMatthias Ringwald // 4*6d34f98eSMatthias Ringwald 5*6d34f98eSMatthias Ringwald #ifndef BTSTACK_CONFIG_H 6*6d34f98eSMatthias Ringwald #define BTSTACK_CONFIG_H 7*6d34f98eSMatthias Ringwald 8*6d34f98eSMatthias Ringwald // Port related features 9*6d34f98eSMatthias Ringwald #define HAVE_BTSTACK_STDIN 10*6d34f98eSMatthias Ringwald #define HAVE_POSIX_FILE_IO 11*6d34f98eSMatthias Ringwald #define HAVE_POSIX_TIME 12*6d34f98eSMatthias Ringwald 13*6d34f98eSMatthias Ringwald // BTstack features that can be enabled 14*6d34f98eSMatthias Ringwald #define ENABLE_BLE 15*6d34f98eSMatthias Ringwald #define ENABLE_CLASSIC 16*6d34f98eSMatthias Ringwald #define ENABLE_LOG_ERROR 17*6d34f98eSMatthias Ringwald #define ENABLE_LOG_INFO 18*6d34f98eSMatthias Ringwald #define ENABLE_PRINTF_HEXDUMP 19*6d34f98eSMatthias Ringwald 20*6d34f98eSMatthias Ringwald // BTstack configuration. buffers, sizes, ... 21*6d34f98eSMatthias Ringwald #define HCI_ACL_PAYLOAD_SIZE 1024 22*6d34f98eSMatthias Ringwald #define HCI_INCOMING_PRE_BUFFER_SIZE 6 23*6d34f98eSMatthias Ringwald 24*6d34f98eSMatthias Ringwald 25*6d34f98eSMatthias Ringwald #endif 26