CoreE/Src/standard_output/serial_io.h
András Wiesner 0e8c11c081 initial
2026-03-09 23:20:43 +01:00

10 lines
219 B
C

#ifndef STANDARD_OUTPUT_SERIAL_OUTPUT
#define STANDARD_OUTPUT_SERIAL_OUTPUT
#include <stdint.h>
void serial_io_init();
void serial_io_write(const char * str, uint32_t len);
#endif /* STANDARD_OUTPUT_SERIAL_OUTPUT */