#ifndef SERIAL_H #define SERIAL_H #include #include bool serr(); void init_serial(); void sout(char b); void soutsz(char *s); void soutsn(char *s, uint8_t n); char sin(); void sinsn(char *s, uint8_t n); #endif