12345678910111213141516171819202122 |
-
-
- #ifndef __LOG_H__
- #define __LOG_H__
-
-
-
- #define debug(fmt, ...) debug_log(true, \
- "%08lu %s: " fmt "\r\n", \
- to_ms_since_boot(get_absolute_time()), \
- __func__, \
- ##__VA_ARGS__)
-
-
- #define print(fmt, ...) debug_log(false, fmt "\r\n", ##__VA_ARGS__)
-
- void debug_log(bool log, const char *format, ...) __attribute__((format(printf, 2, 3)));
- void log_dump_to_usb(void);
-
- #endif
|