99a7c383a178e06897f8fb76246adfc048336c15
[mTask.git] / int / nucleo-f767-blinky / src / serial.h
1 #ifndef SERIAL_H
2 #define SERIAL_H
3
4 #include <stdint.h>
5
6 extern volatile char uartf;
7
8 void init();
9 bool input_av();
10 uint8_t read_byte();
11 void write_byte(uint8_t b);
12 #endif