No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

log.h 347B

123456789101112131415161718
  1. /*
  2. * log.h
  3. */
  4. #ifndef __LOG_H__
  5. #define __LOG_H__
  6. void debug_log(const char *format, ...) __attribute__((format(printf, 1, 2)));
  7. #define debug(fmt, ...) debug_log( \
  8. "%08u %s: " fmt "\r\n", \
  9. to_ms_since_boot(get_absolute_time()), \
  10. __func__, \
  11. ##__VA_ARGS__)
  12. void log_dump_to_usb(void);
  13. #endif // __LOG_H__