Skip to content

Commit

Permalink
Merge pull request #1727 from mrechte/fix_opp_eom
Browse files Browse the repository at this point in the history
Fix OPP EOM in _kick_coil().
  • Loading branch information
toomanybrians authored Dec 31, 2023
2 parents cbf7d4f + 5137b22 commit 54294f2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions mpf/platforms/opp/opp_coil.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ def _kick_coil(self, sol_int, on):
msg.append((mask >> 8) & 0xff)
msg.append(mask & 0xff)
msg.extend(OppRs232Intf.calc_crc8_whole_msg(msg))
msg.extend(OppRs232Intf.EOM_CMD)
cmd = bytes(msg)
if self.sol_card.platform.debug:
self.log.debug("Triggering solenoid driver: %s", "".join(" 0x%02x" % b for b in cmd))
Expand Down

0 comments on commit 54294f2

Please sign in to comment.