trailing spark outputs fix #2931
This commit is contained in:
parent
0fc74038c0
commit
c481f161d5
|
@ -6,7 +6,7 @@ import java.net.URL;
|
|||
import java.util.concurrent.atomic.AtomicReference;
|
||||
|
||||
public class rusEFIVersion {
|
||||
public static final int CONSOLE_VERSION = 20210714;
|
||||
public static final int CONSOLE_VERSION = 20210722;
|
||||
public static AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A");
|
||||
|
||||
public static long classBuildTimeMillis() {
|
||||
|
|
|
@ -278,6 +278,9 @@ public class EngineSnifferPanel {
|
|||
signalBody = Color.yellow;
|
||||
} else if (name.startsWith("t")) {
|
||||
// trigger
|
||||
} else if (name.startsWith("r")) {
|
||||
// trailing coil
|
||||
signalBody = new Color(0xffa400); // golden yellow
|
||||
} else if (name.startsWith("c")) {
|
||||
// coil
|
||||
signalBody = Color.darkGray;
|
||||
|
|
Loading…
Reference in New Issue