Skip to content
Snippets Groups Projects
Commit c9d1a620 authored by Giuliano's avatar Giuliano Committed by Scott Lahteine
Browse files

[2.0.x] fix indentations (#10934)

parent d550da08
No related branches found
No related tags found
No related merge requests found
......@@ -270,7 +270,9 @@
const bool isr_enabled = TEST(M_UCSRxB, M_RXCIEx);
CBI(M_UCSRxB, M_RXCIEx);
#endif
const int v = rx_buffer.head == rx_buffer.tail ? -1 : rx_buffer.buffer[rx_buffer.tail];
#if RX_BUFFER_SIZE > 256
// Reenable RX interrupts if they were enabled
if (isr_enabled) SBI(M_UCSRxB, M_RXCIEx);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment