diff options
author | Nao Pross <np@0hm.ch> | 2021-12-16 14:16:51 +0100 |
---|---|---|
committer | Nao Pross <np@0hm.ch> | 2021-12-16 14:16:51 +0100 |
commit | 18f2ebc5ff3eb2d4edfb0cc4bd2cf930c30af6e5 (patch) | |
tree | 5ed053edf74002a8a01eeb51913eef02c5bc6f64 /src/gr-fadingui | |
parent | Conclude non modulated access codes issue (diff) | |
download | Fading-18f2ebc5ff3eb2d4edfb0cc4bd2cf930c30af6e5.tar.gz Fading-18f2ebc5ff3eb2d4edfb0cc4bd2cf930c30af6e5.zip |
Fix bug in phasecorrection.py
Diffstat (limited to 'src/gr-fadingui')
-rw-r--r-- | src/gr-fadingui/python/phasecorrection.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gr-fadingui/python/phasecorrection.py b/src/gr-fadingui/python/phasecorrection.py index 9acf563..e30824d 100644 --- a/src/gr-fadingui/python/phasecorrection.py +++ b/src/gr-fadingui/python/phasecorrection.py @@ -65,7 +65,11 @@ class phasecorrection(gr.sync_block): ephase = pmt.to_python(end.value) # compute frequency offset between start and end - phasediff = (ephase - sphase) % (2 * np.pi) + phasediff = (ephase - sphase) # % (2 * np.pi) + if phasediff > np.pi: + phasediff -= np.pi + elif phasediff < -np.pi: + phasediff += np.pi freq = phasediff / nsamples if freq < 1e-3: |