From 93e98396e7ba46c75efa5a2ad867531ac65d539d Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Mon, 27 Jan 2025 17:31:59 -0500 Subject: [PATCH] Update main.c print size --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 5f39d1b1..73f1b977 100644 --- a/main.c +++ b/main.c @@ -2348,7 +2348,7 @@ void get_tlm_fc() { int count = 0; while (count < bpsk_size) { if ((ctr % 10000) == 0) - printf("bpsk_buffer %f or %d, count = %d = ctr = %d\n", (float)bpsk_buffer[count], (int)( (float)bpsk_buffer[count] ), count, ctr); + printf("size: %d bpsk_buffer %f or %d, count = %d = ctr = %d\n",bpsk_size, (float)bpsk_buffer[count], (int)( (float)bpsk_buffer[count] ), count, ctr); buffer[ctr++] = (int)( (float)bpsk_buffer[count] ); count += 4; }