37 int_t
fputc(int_t c, FILE *stream)
40 if (stream == stdout || stream == stderr)
42 #ifndef DISABLE_SERIAL
58 #ifndef DISABLE_SERIAL
59 Serial.begin(baudrate);
70 vfprintf(stdout, fmt, args);
72 #ifndef DISABLE_SERIAL
83 for (uint8_t i = 0; i < length; i++)
91 TRACE_PRINTF(
"%02" PRIX8
" ", *((
const uint8_t *)data + i));
93 if ((i % 16) == 15 || i == (length - 1))
107 vfprintf(stdout, (
const char *)fmt, args);
109 #ifndef DISABLE_SERIAL
void print_debug_F(const __FlashStringHelper *fmt,...)
Print debug from rom Flash.
int_t fputc(int_t c, FILE *stream)
Put char to file output.
void print_debug_array(const char *prepend, const void *data, size_t length)
Display the contents of an array.
void init_debug(uint32_t baudrate)
init serial monitor
void print_debug(const char *fmt,...)
Print debug from ram.
#define TRACE_PRINTF(...)