From c6b13866bc9f43d731f2db14a8a06b81d0618dcf Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sat, 25 Jan 2020 15:26:43 +0800 Subject: [PATCH] fix laser lock params --- dmi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dmi.py b/dmi.py index b2c9c99..1d1b254 100644 --- a/dmi.py +++ b/dmi.py @@ -9,10 +9,10 @@ def main(): freq_base = 1086e6 bufsize = 4096 - induction = InductionHeater("/dev/ttyUSB0", 430e3, 445e3) + induction = InductionHeater("/dev/ttyUSB0", 350e3, 445e3) induction.start() try: - stabilizer = Stabilizer(freq_sample, 0.4, 1088.3e6 - freq_base, 200e-6, induction) + stabilizer = Stabilizer(freq_sample, 0.4, 1088.1e6 - freq_base, 50e-6, induction) position_tracker = PositionTracker(int(0.1*freq_sample/bufsize)) sdr = SoapySDR.Device()