* The logging system sends the message to both VGA and serial * The serial print uses color to indicate the category of the message Message Categories | Colours Debug Green Info Blue Error Red
13 lines
218 B
C
13 lines
218 B
C
//
|
|
// Created by nigel on 10/28/23.
|
|
//
|
|
#pragma once
|
|
|
|
#include "drivers/serial/serial.h"
|
|
|
|
|
|
|
|
void print_dbg(const char* message, ...);
|
|
void print_info(const char* message, ...);
|
|
void print_err(const char* message, ...);
|