mirror of
https://git.stationery.faith/corn/corn.git
synced 2024-11-09 16:02:08 +00:00
8 lines
144 B
C
8 lines
144 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
int serial_init(void);
|
|
uint8_t serial_in(void);
|
|
void serial_out(uint8_t ch);
|
|
void serial_out_str(char *str);
|