mirror of https://github.com/rusefi/rusefi-1.git
refactoring
This commit is contained in:
parent
c6e8a5cc6b
commit
c7b535126a
|
@ -492,7 +492,7 @@ public class BinaryProtocol {
|
|||
public void writeData(byte[] content, int contentOffset, int ecuOffset, int size) {
|
||||
isBurnPending = true;
|
||||
|
||||
byte packet[] = new byte[5 + size];
|
||||
byte[] packet = new byte[5 + size];
|
||||
packet[0] = Fields.TS_CHUNK_WRITE_COMMAND;
|
||||
putShort(packet, 1, swap16(ecuOffset));
|
||||
putShort(packet, 3, swap16(size));
|
||||
|
|
|
@ -6,7 +6,7 @@ import java.net.URL;
|
|||
import java.util.concurrent.atomic.AtomicReference;
|
||||
|
||||
public class rusEFIVersion {
|
||||
public static final int CONSOLE_VERSION = 20211019;
|
||||
public static final int CONSOLE_VERSION = 20211021;
|
||||
public static AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A");
|
||||
|
||||
public static long classBuildTimeMillis() {
|
||||
|
|
Loading…
Reference in New Issue