]> git.friedersdorff.com Git - max/lanthanide_pdu.git/blob - uart.h
Initial commit
[max/lanthanide_pdu.git] / uart.h
1 #ifndef LANTHANIDE_UART
2 #define LANTHANIDE_UART
3
4 #include "pico/stdlib.h"
5
6 bool is_whitespace(char character);
7 void read_word(uart_inst_t *uart, char *buffer, int buffersize, bool *eol);
8 void finish_line(uart_inst_t *uart);
9
10
11 #endif