diff --git a/plover/machine/geminipr.py b/plover/machine/geminipr.py index da06e00c7..8af612af1 100644 --- a/plover/machine/geminipr.py +++ b/plover/machine/geminipr.py @@ -55,13 +55,6 @@ def run(self): if isinstance(raw, str): raw = [ord(x) for x in raw] - # Make sure this is a valid steno stroke. - if not ((len(raw) == BYTES_PER_STROKE) and - (raw[0] & 0x80) and - (len([b for b in raw if b & 0x80]) == 1)): - serial_port.flushInput() - continue - # Convert the raw to a list of steno keys. steno_keys = [] for i, b in enumerate(raw):