Namespace for serial debugging functions. More...
Functions | |
| void | initialize () |
| Initializes the Debug_Serial interface. It should be called before using any other Debug_Serial functions. | |
| void | print (const char *msg) |
| Prints a string to the serial console. | |
| void | println (const char *msg) |
| Prints a string AND a newline to the serial console. | |
Namespace for serial debugging functions.
| void Debug_Serial::initialize | ( | ) |
Initializes the Debug_Serial interface. It should be called before using any other Debug_Serial functions.
Definition at line 18 of file Debug_serial.cpp.
Referenced by setup().
| void Debug_Serial::print | ( | const char * | msg | ) |
Prints a string to the serial console.
| msg | The message to print. |
Definition at line 29 of file Debug_serial.cpp.
Referenced by DBG_GENERAL().
| void Debug_Serial::println | ( | const char * | msg | ) |
Prints a string AND a newline to the serial console.
| msg | The message to print. |
Definition at line 37 of file Debug_serial.cpp.
Referenced by DBGLN_GENERAL().