Fix comment to reflect variable belongs to decoder

This commit is contained in:
2024-10-18 20:49:49 +02:00
committed by GitHub
parent 6b54764b6a
commit 84281a61f4

View File

@@ -13,8 +13,7 @@
#define S_DATA 2 #define S_DATA 2
static volatile bool txready; // Aligned with clock? static volatile bool txready; // Aligned with clock?
static volatile int rxstate; // Current encoder state static volatile int rxstate; // Current decoder state
static volatile byte rxbuf[128]; // Data buffer for decoder static volatile byte rxbuf[128]; // Data buffer for decoder
static volatile byte * rxhead; // Write position for decoder static volatile byte * rxhead; // Write position for decoder
static volatile byte * rxtail; // End of decoder buffer static volatile byte * rxtail; // End of decoder buffer