11 lines
233 B
C
11 lines
233 B
C
#ifndef LANTHANIDE_UART
|
|
#define LANTHANIDE_UART
|
|
|
|
#include "pico/stdlib.h"
|
|
|
|
bool is_whitespace(char character);
|
|
void read_word(uart_inst_t *uart, char *buffer, int buffersize, bool *eol);
|
|
void finish_line(uart_inst_t *uart);
|
|
|
|
|
|
#endif
|