Skip to content

Commit

Permalink
Add OP Code Multi Sense Long 0xe0 to Loconet Constants
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-Richardson committed Apr 4, 2021
1 parent 29b1d6e commit 4d7e122
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions java/src/jmri/jmrix/loconet/LnConstants.java
Expand Up @@ -89,6 +89,7 @@
* @author John Kabat
* @author Alain Le Marchand
* @author B. Milhaupt Copyright (C) 2018
* @author Michael Richardson
*/
public final class LnConstants {

Expand Down Expand Up @@ -361,6 +362,7 @@ public final static String DEC_MODE(int s) { // encode decoder type as a string
public final static int OPC_SW_ACK = 0xbd;
public final static int OPC_LOCO_ADR = 0xbf;
public final static int OPC_MULTI_SENSE = 0xd0; // Undocumented name
public final static int OPC_MULTI_SENSE_LONG = 0xe0; // Undocumented name
public final static int OPC_PANEL_RESPONSE = 0xd7; // Undocumented name
public final static int OPC_PANEL_QUERY = 0xdf; // Undocumented name
public final static int OPC_LISSY_UPDATE = 0xe4; // Undocumented name
Expand Down Expand Up @@ -428,6 +430,7 @@ public final static String OPC_NAME(int opcode) {
case OPC_SW_ACK : return "OPC_SW_ACK"; // NOI18N
case OPC_LOCO_ADR : return "OPC_LOCO_ADR"; // NOI18N
case OPC_MULTI_SENSE: return "OPC_MULTI_SENSE"; // NOI18N
case OPC_MULTI_SENSE_LONG: return "OPC_MULTI_SENSE_LONG"; // NOI18N
case OPC_PANEL_QUERY: return "OPC_PANEL_QUERY"; // NOI18N
case OPC_PANEL_RESPONSE: return "OPC_PANEL_RESPONSE"; // NOI18N
case OPC_LISSY_UPDATE: return "OPC_LISSY_UPDATE"; // NOI18N
Expand Down

0 comments on commit 4d7e122

Please sign in to comment.