Skip to content

Commit 54294f2

Browse files
Merge pull request #1727 from mrechte/fix_opp_eom
Fix OPP EOM in _kick_coil().
2 parents cbf7d4f + 5137b22 commit 54294f2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

mpf/platforms/opp/opp_coil.py

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ def _kick_coil(self, sol_int, on):
6464
msg.append((mask >> 8) & 0xff)
6565
msg.append(mask & 0xff)
6666
msg.extend(OppRs232Intf.calc_crc8_whole_msg(msg))
67+
msg.extend(OppRs232Intf.EOM_CMD)
6768
cmd = bytes(msg)
6869
if self.sol_card.platform.debug:
6970
self.log.debug("Triggering solenoid driver: %s", "".join(" 0x%02x" % b for b in cmd))

0 commit comments

Comments
 (0)