From d3b39dbc9f3feb8cf1b50e57a7bbf0b442907dff Mon Sep 17 00:00:00 2001 From: Kirill Kurshakow Date: Wed, 7 Jun 2023 13:02:45 +0300 Subject: [PATCH] fix --- uart_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uart_module.c b/uart_module.c index 6fa0926..c4cbc2a 100644 --- a/uart_module.c +++ b/uart_module.c @@ -3,7 +3,7 @@ volatile static uint8_t rx_buffer[RX_BUFFER_SIZE] = {0}; volatile static uint16_t rx_count = 0; volatile static uint8_t uart_tx_busy = 1; - +// кольцевой буффер ISR(USART_RX_vect){ volatile static uint16_t rx_write_pos = 0;