mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-01 09:08:06 +00:00
20 lines
332 B
C
20 lines
332 B
C
|
#ifndef BTSTACK_CONFIG_H
|
||
|
#define BTSTACK_CONFIG_H
|
||
|
|
||
|
#include "btstack_bool.h"
|
||
|
|
||
|
// redirect btstack_assert to test_assert
|
||
|
#define HAVE_ASSERT
|
||
|
#define btstack_assert test_assert
|
||
|
|
||
|
#if defined __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
extern void test_assert(bool condition);
|
||
|
#if defined __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#define ENABLE_PRINTF_HEXDUMP
|
||
|
|
||
|
#endif
|