Skip to content

Commit

Permalink
fixup! cpu/esp32: uart API function uart_mode added
Browse files Browse the repository at this point in the history
  • Loading branch information
gschorcht committed Mar 26, 2019
1 parent 85d53da commit ef6f795
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpu/esp32/periph/uart.c
Original file line number Diff line number Diff line change
Expand Up @@ -371,8 +371,8 @@ static int _uart_set_baudrate(uart_t uart, uint32_t baudrate)
return UART_OK;
}

int _uart_set_mode(uart_t uart, uart_data_bits_t data_bits,
uart_parity_t parity, uart_stop_bits_t stop_bits)
static int _uart_set_mode(uart_t uart, uart_data_bits_t data_bits,
uart_parity_t parity, uart_stop_bits_t stop_bits)
{
DEBUG("%s uart=%d, data_bits=%d parity=%d stop_bits=%d\n", __func__,
uart, data_bits, parity, stop_bits);
Expand Down

0 comments on commit ef6f795

Please sign in to comment.