Teensy 4.1 core updated for C++20
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

14 lines
270B

  1. #define PRINT_DEBUG_STUFF
  2. #ifdef PRINT_DEBUG_STUFF
  3. #define printf_init() printf_debug_init()
  4. #define printf(...) printf_debug(__VA_ARGS__)
  5. void print_debug_init(void);
  6. void printf_debug(const char *format, ...);
  7. #else
  8. #define printf_init()
  9. #define printf(...)
  10. #endif