1 #ifndef BTSTACK_CONFIG_H 2 #define BTSTACK_CONFIG_H 3 4 #include "btstack_bool.h" 5 6 // redirect btstack_assert to test_assert 7 #define HAVE_ASSERT 8 #define btstack_assert test_assert 9 10 #if defined __cplusplus 11 extern "C" { 12 #endif 13 extern void test_assert(bool condition); 14 #if defined __cplusplus 15 } 16 #endif 17 18 #define ENABLE_PRINTF_HEXDUMP 19 20 #endif