xref: /btstack/test/btstack_util/btstack_config.h (revision 65e76442879710536c8282d7434f54986ceda717)
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