only:not even offer DFU erase

This commit is contained in:
rusefillc 2024-06-07 03:23:30 -04:00
parent edd9e5ca83
commit 24fdbfe55c
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ public interface rusEFIVersion {
/**
* @see com.rusefi.autoupdate.Autoupdate#VERSION
*/
int CONSOLE_VERSION = 20240603;
int CONSOLE_VERSION = 20240607;
AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A");
static long classBuildTimeMillis() {

View File

@ -287,7 +287,7 @@ public class ProgramSelector {
updateModeComboBox.addItem(AUTO_DFU);
}
if (hasDfuDevice) {
if (hasDfuDevice && !requireBlt) {
updateModeComboBox.addItem(MANUAL_DFU);
updateModeComboBox.addItem(DFU_ERASE);
if (DfuFlasher.haveBootloaderBinFile()) {