From b97c54e5fdce065798b7168ef41dd23a72042c7a Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Mon, 27 Jan 2025 17:02:16 -0500 Subject: [PATCH] Update main.c wait 2 sec --- main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index 498a531a..55e56c65 100644 --- a/main.c +++ b/main.c @@ -2335,7 +2335,7 @@ void get_tlm_fc() { printf("Starting Encode Loop\n"); fflush(stdout); - while (!Encode_AllDataCollected() && ((millis() - start_timer) < 1000)) + while (!Encode_AllDataCollected() && ((millis() - start_timer) < 2000)) { if (Encode_CanCollect()) { @@ -2346,7 +2346,7 @@ void get_tlm_fc() { } int count = 0; 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); +// 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; }