From 84281a61f4140a09ba8bbbbb379d6773fb8db7a4 Mon Sep 17 00:00:00 2001 From: Madcow Date: Fri, 18 Oct 2024 20:49:49 +0200 Subject: [PATCH] Fix comment to reflect variable belongs to decoder --- src/main.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index 341194a..69f262f 100644 --- a/src/main.c +++ b/src/main.c @@ -13,8 +13,7 @@ #define S_DATA 2 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 * rxhead; // Write position for decoder static volatile byte * rxtail; // End of decoder buffer