mirror of
https://github.com/xdsopl/robot36.git
synced 2026-01-30 03:14:13 +01:00
increased 5ms sync pulse width by 0.5ms
this improves jitter on the Wraase modes
This commit is contained in:
parent
2d6a4d7aca
commit
844dc6a0b3
|
|
@ -57,7 +57,7 @@ public class Demodulator {
|
|||
float scanLineCutoff = scanLineBandwidth / 2;
|
||||
int scanLineFilterSamples = (int) Math.round(0.443 * sampleRate / scanLineCutoff) | 1;
|
||||
scanLineFilter = new ComplexMovingAverage(scanLineFilterSamples);
|
||||
double syncPulse5msSeconds = 0.005;
|
||||
double syncPulse5msSeconds = 0.0055;
|
||||
double syncPulse9msSeconds = 0.009;
|
||||
double syncPulse20msSeconds = 0.020;
|
||||
int syncPulse5msSamples = (int) Math.round(syncPulse5msSeconds * sampleRate) | 1;
|
||||
|
|
|
|||
Loading…
Reference in a new issue