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