Update main.c print every 10,000 ctr

fc-4
Alan Johnston 11 months ago committed by GitHub
parent bb6ef3b627
commit 698c01916b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -2347,13 +2347,15 @@ 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);
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);
buffer[ctr++] = (int)( (float)bpsk_buffer[count] );
count += 4;
}
// printf("\n");
}
printf("Encode collected time: %d\n", millis() - start_timer);
fflush(stdout);
// convert float to

Loading…
Cancel
Save

Powered by TurnKey Linux.