|
|
|
@ -2333,8 +2333,11 @@ void get_tlm_fc() {
|
|
|
|
if ((i % samples) == 0) {
|
|
|
|
if ((i % samples) == 0) {
|
|
|
|
phase *= -1;
|
|
|
|
phase *= -1;
|
|
|
|
if ((ctr - smaller) > 0) {
|
|
|
|
if ((ctr - smaller) > 0) {
|
|
|
|
for (int j = 1; j <= smaller; j++)
|
|
|
|
int j;
|
|
|
|
buffer[ctr - j] = buffer[ctr - j] * 0.4;
|
|
|
|
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;
|
|
|
|
flip_ctr = ctr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|