Stima V4 Slave RAIN  4.2
debug.cpp
Go to the documentation of this file.
1 
31 #include "debug.h"
32 
37 int_t fputc(int_t c, FILE *stream)
38 {
39  // Standard output or error output?
40  if (stream == stdout || stream == stderr)
41  {
42  #ifndef DISABLE_SERIAL
43  Serial.write(c);
44  #endif
45  return c;
46  }
47  // Unknown output?
48  else
49  {
50  // If a writing error occurs, EOF is returned
51  return EOF;
52  }
53 }
54 
57 void init_debug(uint32_t baudrate) {
58  #ifndef DISABLE_SERIAL
59  Serial.begin(baudrate);
60  while (!Serial);
61  #endif
62 }
63 
66 void print_debug(const char *fmt, ...)
67 {
68  va_list args;
69  va_start(args, fmt);
70  vfprintf(stdout, fmt, args);
71  va_end(args);
72  #ifndef DISABLE_SERIAL
73  Serial.flush();
74  #endif
75 }
76 
81 void print_debug_array(const char *prepend, const void *data, size_t length)
82 {
83  for (uint8_t i = 0; i < length; i++)
84  {
85  // Beginning of a new line?
86  if ((i % 16) == 0)
87  {
88  TRACE_PRINTF("%s", prepend);
89  }
90  // Display current data byte
91  TRACE_PRINTF("%02" PRIX8 " ", *((const uint8_t *)data + i));
92  // End of current line?
93  if ((i % 16) == 15 || i == (length - 1))
94  {
95  TRACE_PRINTF("\r\n");
96  }
97  }
98 }
99 
102 void print_debug_F(const __FlashStringHelper *fmt, ...)
103 {
104  osSuspendAllTasks();
105  va_list args;
106  va_start(args, fmt);
107  vfprintf(stdout, (const char *)fmt, args);
108  va_end(args);
109  #ifndef DISABLE_SERIAL
110  Serial.flush();
111  #endif
112  osResumeAllTasks();
113 }
void print_debug_F(const __FlashStringHelper *fmt,...)
Print debug from rom Flash.
Definition: debug.cpp:102
int_t fputc(int_t c, FILE *stream)
Put char to file output.
Definition: debug.cpp:37
void print_debug_array(const char *prepend, const void *data, size_t length)
Display the contents of an array.
Definition: debug.cpp:81
void init_debug(uint32_t baudrate)
init serial monitor
Definition: debug.cpp:57
void print_debug(const char *fmt,...)
Print debug from ram.
Definition: debug.cpp:66
#define TRACE_PRINTF(...)
Definition: debug.h:64