Update main.c print smaller

fc-2
Alan Johnston 11 months ago committed by GitHub
parent 9e102a166e
commit 81b0746c29
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -2333,8 +2333,11 @@ void get_tlm_fc() {
if ((i % samples) == 0) {
phase *= -1;
if ((ctr - smaller) > 0) {
for (int j = 1; j <= smaller; j++)
buffer[ctr - j] = buffer[ctr - j] * 0.4;
int j;
for (j = 1; j <= smaller; j++) {
buffer[ctr - j] = buffer[ctr - j] * 0.4;
if (ctr < 1000) printf("# %d %d\n", ctr - j, buffer[ctr - j]);
}
}
flip_ctr = ctr;
}

Loading…
Cancel
Save

Powered by TurnKey Linux.