Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix for LnTurnoutManager turnout retry
  • Loading branch information
devel-bobm committed Jul 30, 2019
1 parent b18e59b commit 975e42d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/src/jmri/jmrix/loconet/LnTurnoutManager.java
Expand Up @@ -133,7 +133,7 @@ public void message(LocoNetMessage l) {
addr = address(sw1, sw2);

// store message in case resend is needed
lastSWREQ = l;
lastSWREQ = new LocoNetMessage(l);

// LocoNet spec says 0x10 of SW2 must be 1, but we observe 0
if (((sw1 & 0xFC) == 0x78) && ((sw2 & 0xCF) == 0x07)) {
Expand Down

0 comments on commit 975e42d

Please sign in to comment.