#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);