This commit is contained in:
parent
75de3f4c71
commit
d38babb60f
|
@ -34,6 +34,8 @@ public class SerialAutoChecker {
|
|||
* @return ECU signature from specified stream
|
||||
*/
|
||||
public String checkResponse(IoStream stream, Function<CallbackContext, Void> callback) {
|
||||
if (stream == null)
|
||||
return null;
|
||||
if (mode == PortDetector.DetectorMode.DETECT_ELM327) {
|
||||
if (Elm327Connector.checkConnection(serialPort, stream)) {
|
||||
// todo: this method is supposed to return signature not serial port!
|
||||
|
|
|
@ -6,7 +6,7 @@ import java.net.URL;
|
|||
import java.util.concurrent.atomic.AtomicReference;
|
||||
|
||||
public class rusEFIVersion {
|
||||
public static final int CONSOLE_VERSION = 20220323;
|
||||
public static final int CONSOLE_VERSION = 20220327;
|
||||
public static AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A");
|
||||
|
||||
public static long classBuildTimeMillis() {
|
||||
|
|
Loading…
Reference in New Issue