From 12180c01700203a0a12f9e1f1dbef3bdb2b1fca9 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Mon, 27 Jan 2025 16:56:11 -0500 Subject: [PATCH] Update main.c increment count --- main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/main.c b/main.c index 80ebba7f..498a531a 100644 --- a/main.c +++ b/main.c @@ -2348,6 +2348,7 @@ void get_tlm_fc() { while (count < bpsk_size) { printf("bpsk_buffer %f or %d, count = %d = ctr = %d\n", (float)bpsk_buffer[count], (int)( (float)bpsk_buffer[count] ), count, ctr); buffer[ctr++] = (int)( (float)bpsk_buffer[count] ); + count += 4; } printf("\n"); }