Add functionality allowing rxBuffer of HardwareSerial to be changed in size via HardwareSerial::setRxBufferSize. (#1855)

This commit is contained in:
Adam Coddington
2018-09-17 12:16:18 -07:00
committed by Me No Dev
parent 339618f8ef
commit ce61074802
4 changed files with 27 additions and 0 deletions

View File

@ -67,6 +67,8 @@ void uartFlush(uart_t* uart);
void uartSetBaudRate(uart_t* uart, uint32_t baud_rate);
uint32_t uartGetBaudRate(uart_t* uart);
size_t uartResizeRxBuffer(uart_t* uart, size_t new_size);
void uartSetDebug(uart_t* uart);
int uartGetDebug();