btstack_debug: add c++ guard

This commit is contained in:
Matthias Ringwald 2022-03-11 21:31:25 +01:00
parent 74e1cc8698
commit 4902524cc6
25 changed files with 8 additions and 0 deletions

View File

@ -49,6 +49,10 @@
#include "btstack_defines.h"
#include "hci_dump.h"
#if defined __cplusplus
extern "C" {
#endif
#ifdef __AVR__
#include <avr/pgmspace.h>
#endif
@ -148,4 +152,8 @@ void log_debug_hexdump(const void *data, int size);
/* API_END */
#if defined __cplusplus
}
#endif
#endif // DEBUG_H