Red Bird Racing VCU v2
 
Loading...
Searching...
No Matches
Debug_serial.hpp
Go to the documentation of this file.
1/**
2 * @file Debug_serial.hpp
3 * @author Planeson, Chiho, Red Bird Racing
4 * @brief Declaration of the Debug_Serial namespace for serial debugging functions
5 * @version 2.0.1
6 * @date 2026-03-04
7 * @see Debug_serial.cpp
8 */
9
10#ifndef DEBUG_SERIAL_HPP
11#define DEBUG_SERIAL_HPP
12
13#include <Arduino.h>
14#include "Enums.hpp"
15
16/**
17 * @brief Namespace for serial debugging functions
18 */
19namespace Debug_Serial {
20 void initialize();
21
22 void print(const char* msg);
23 void println(const char* msg);
24}
25
26#endif // DEBUG_SERIAL_HPP
Enumeration definitions for the VCU.
Namespace for serial debugging functions.
void println(const char *msg)
Prints a string AND a newline to the serial console.
void initialize()
Initializes the Debug_Serial interface. It should be called before using any other Debug_Serial funct...
void print(const char *msg)
Prints a string to the serial console.