Teensy 4.1 core updated for C++20
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

21 行
410B

  1. #define PRINT_DEBUG_STUFF
  2. #ifdef PRINT_DEBUG_STUFF
  3. #define printf_init() printf_debug_init()
  4. // defining printf this way breaks things like Serial.printf() in C++ :(
  5. #define printf(...) printf_debug(__VA_ARGS__)
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. void print_debug_init(void);
  10. void printf_debug(const char *format, ...);
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #else
  15. #define printf_init()
  16. #define printf(...)
  17. #endif