im an airhead who should test her refactors

This commit is contained in:
Triss 2021-06-29 02:09:41 +02:00
parent 2905ff2116
commit 2bac8cd99e
2 changed files with 3 additions and 2 deletions

View File

@ -66,7 +66,7 @@ void cdc_uart_task(void) {
void cdc_uart_set_hwflow(bool enable) { uart_set_hw_flow(PINOUT_UART_INTERFACE, enable, enable); }
void cdc_uart_set_baud_rate(uint32_t brate) {
uart_init(PINOUT_UART_INTERFACE, line_coding->bit_rate);
void cdc_uart_set_baudrate(uint32_t brate) {
uart_init(PINOUT_UART_INTERFACE, brate);
}

View File

@ -4,6 +4,7 @@
#define PROTOS_H_
#include <stdbool.h>
#include <stdint.h>
#include "protocfg.h"