Sensor Fusion Library 0.6.1
Orientation sensing for Espressif (ESP32, ESP8266) processors
Loading...
Searching...
No Matches
debug_print.h
Go to the documentation of this file.
1
7#ifndef DEBUG_PRINT_H
8#define DEBUG_PRINT_H
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14#if (ENABLE_DEBUG_LOG == 1)
15void debug_log(const char* str);
16#else
17 #define debug_log(x)
18#endif
19
20#ifdef __cplusplus
21}
22#endif
23
24#endif // #ifndef DEBUG_PRINT_H