fix unstable measurements #2

This commit is contained in:
qrp73 2019-10-08 08:21:26 +03:00
parent d1c6ccfe61
commit 2ba09fb637

3
main.c
View file

@ -672,6 +672,9 @@ bool sweep(bool break_on_operation)
for (i = 0; i < sweep_points; i++) {
int delay = set_frequency(frequencies[i]);
delay = delay < 3 ? 3 : delay;
delay = delay > 8 ? 8 : delay;
tlv320aic3204_select_in3(); // CH0:REFLECT
wait_dsp(delay);