Skip to content

Commit

Permalink
[mcu_periph] fix typo in tx_buf size
Browse files Browse the repository at this point in the history
  • Loading branch information
flixr committed Jun 30, 2012
1 parent c2a9987 commit 2b17506
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sw/airborne/mcu_periph/uart.h
Expand Up @@ -46,7 +46,7 @@ struct uart_periph {
uint16_t rx_insert_idx;
uint16_t rx_extract_idx;
/* Transmit buffer */
uint8_t tx_buf[UART_RX_BUFFER_SIZE];
uint8_t tx_buf[UART_TX_BUFFER_SIZE];
uint16_t tx_insert_idx;
uint16_t tx_extract_idx;
uint8_t tx_running;
Expand Down

0 comments on commit 2b17506

Please sign in to comment.