From d05019609d05268f23a14809b455112f9d7de424 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sat, 28 Feb 2026 18:53:14 -0500 Subject: [PATCH] Update main.c write b to dataLen --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index a38404fe..f9c42d01 100644 --- a/main.c +++ b/main.c @@ -1578,7 +1578,7 @@ void get_tlm_fox() { int count; char byte; printf("b is: \n"); - for (count = 0; count < 70; count++) { + for (count = 0; count < dataLen; count++) { byte = b[count]; fwrite(&byte, 1, 1, telem_binary); printf("%02X ", byte);