clocksync: Start with adjusted_freq of 1.0
Avoid setting adjusted_freq to 0.0 as that can cause divide by zero failures at startup. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
@@ -164,7 +164,7 @@ class SecondarySync(ClockSync):
|
|||||||
def __init__(self, reactor, main_sync):
|
def __init__(self, reactor, main_sync):
|
||||||
ClockSync.__init__(self, reactor)
|
ClockSync.__init__(self, reactor)
|
||||||
self.main_sync = main_sync
|
self.main_sync = main_sync
|
||||||
self.clock_adj = (0., 0.)
|
self.clock_adj = (0., 1.)
|
||||||
def connect(self, serial):
|
def connect(self, serial):
|
||||||
ClockSync.connect(self, serial)
|
ClockSync.connect(self, serial)
|
||||||
self.clock_adj = (0., self.mcu_freq)
|
self.clock_adj = (0., self.mcu_freq)
|
||||||
|
|||||||
Reference in New Issue
Block a user