From b602f1b1580ef5a99d8052d3e506286efe8c96c1 Mon Sep 17 00:00:00 2001 From: rusefillc Date: Sat, 25 Sep 2021 21:49:23 -0400 Subject: [PATCH] rusEFI console to compare current bundle against auto-DFU bundle #3266 one step back --- .../io/src/main/java/com/rusefi/io/DfuHelper.java | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/java_console/io/src/main/java/com/rusefi/io/DfuHelper.java b/java_console/io/src/main/java/com/rusefi/io/DfuHelper.java index d8bbe8e6d0..e6dd9fca9d 100644 --- a/java_console/io/src/main/java/com/rusefi/io/DfuHelper.java +++ b/java_console/io/src/main/java/com/rusefi/io/DfuHelper.java @@ -7,13 +7,7 @@ import java.io.IOException; public class DfuHelper { public static void sendDfuRebootCommand(IoStream stream, StringBuilder messages) { - - - - if (1==1) - return; - - byte[] command = BinaryProtocol.getTextCommandBytes(Fields.CMD_REBOOT_DFU); + byte[] command = BinaryProtocol.getTextCommandBytes(Fields.CMD_REBOOT_DFU); try { stream.sendPacket(command); stream.close();