Luna/kernel/include/io/Serial.h
2022-09-05 16:13:51 +02:00

13 lines
278 B
C++

#pragma once
#include "render/Color.h"
#include <stddef.h>
namespace Serial
{
void wait();
void write(const char* string, size_t size);
void print(const char* string);
void println(const char* string);
void set_color(Color& color);
void reset_color();
}