Fixed display of points
This commit is contained in:
parent
79a33b0d24
commit
a7ba9c91c9
1 changed files with 6 additions and 6 deletions
12
libcsdr.c
12
libcsdr.c
|
@ -1780,12 +1780,12 @@ void timing_recovery_cc(complexf* input, complexf* output, int input_size, timin
|
||||||
correction_offset,
|
correction_offset,
|
||||||
state->debug_writefiles,
|
state->debug_writefiles,
|
||||||
3,
|
3,
|
||||||
num_samples_quarterbit, 'r',
|
//num_samples_quarterbit, 'r',
|
||||||
num_samples_quarterbit * 2, 'r',
|
//num_samples_quarterbit * 2, 'r',
|
||||||
num_samples_quarterbit * 3, 'r',
|
//num_samples_quarterbit * 3, 'r',
|
||||||
//el_point_left_index - current_bitstart_index, 'r',
|
el_point_left_index - current_bitstart_index, 'r',
|
||||||
//el_point_right_index - current_bitstart_index, 'r',
|
el_point_right_index - current_bitstart_index, 'r',
|
||||||
//el_point_mid_index - current_bitstart_index, 'r',
|
el_point_mid_index - current_bitstart_index, 'r',
|
||||||
0);
|
0);
|
||||||
}
|
}
|
||||||
int error_sign = (state->algorithm == TIMING_RECOVERY_ALGORITHM_GARDNER) ? -1 : 1;
|
int error_sign = (state->algorithm == TIMING_RECOVERY_ALGORITHM_GARDNER) ? -1 : 1;
|
||||||
|
|
Loading…
Reference in a new issue