Skip to content

Commit aa37fd8

Browse files
committed
early spin at #217
1 parent eee09af commit aa37fd8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lddecode_core.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -719,13 +719,13 @@ def refinepulses(self, pulses):
719719
''' returns validated pulses with type and distance checks '''
720720

721721
# compute the allowable times for each pulse type
722-
hsync_min = self.usectoinpx(self.rf.SysParams['hsyncPulseUS'] - .5)
722+
hsync_min = self.usectoinpx(self.rf.SysParams['hsyncPulseUS'] - .7)
723723
hsync_max = self.usectoinpx(self.rf.SysParams['hsyncPulseUS'] + .5)
724724

725-
eq_min = self.usectoinpx(self.rf.SysParams['eqPulseUS'] - .5)
725+
eq_min = self.usectoinpx(self.rf.SysParams['eqPulseUS'] - .7)
726726
eq_max = self.usectoinpx(self.rf.SysParams['eqPulseUS'] + .5)
727727

728-
vsync_min = self.usectoinpx(self.rf.SysParams['vsyncPulseUS'] - .5)
728+
vsync_min = self.usectoinpx(self.rf.SysParams['vsyncPulseUS'] - .7)
729729
vsync_max = self.usectoinpx(self.rf.SysParams['vsyncPulseUS'] + .5)
730730

731731
# Pulse validator routine. Removes sync pulses of invalid lengths, does not

0 commit comments

Comments
 (0)