From 057b01d8f05359c0ce1f56c4f907a84790edbf35 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Tue, 28 Jan 2025 22:37:18 -0500 Subject: [PATCH] Update main.c change to 2*ctr+2 --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index c7942de3..7dd5c695 100644 --- a/main.c +++ b/main.c @@ -2360,7 +2360,7 @@ void get_tlm_fc() { buffer_complete[ctr_complete++] = buffer[ctr - 1]; count += 4; } - socket_send(bpsk_size); // should be ctr? if send in one block, comment out + socket_send(2 * ctr + 2); // should be ctr? if send in one block, comment out ctr = 0; } }