Now we perform port scanning for non-obfuscated firmware as well as for obfuscated one #6914
This commit is contained in:
parent
5dd72e2bfd
commit
0fe5649794
|
@ -73,12 +73,11 @@ public class BasicStartupFrame {
|
||||||
|
|
||||||
statusMessage.setForeground(Color.red);
|
statusMessage.setForeground(Color.red);
|
||||||
panel.add(statusMessage);
|
panel.add(statusMessage);
|
||||||
|
|
||||||
SerialPortScanner.INSTANCE.addListener(currentHardware -> SwingUtilities.invokeLater(() -> {
|
|
||||||
onHardwareUpdated(currentHardware);
|
|
||||||
}));
|
|
||||||
}
|
}
|
||||||
panel.add(updateFirmwareButton);
|
panel.add(updateFirmwareButton);
|
||||||
|
SerialPortScanner.INSTANCE.addListener(currentHardware -> SwingUtilities.invokeLater(() -> {
|
||||||
|
onHardwareUpdated(currentHardware);
|
||||||
|
}));
|
||||||
} else {
|
} else {
|
||||||
panel.add(new JLabel("Sorry only works on Windows"));
|
panel.add(new JLabel("Sorry only works on Windows"));
|
||||||
}
|
}
|
||||||
|
@ -118,7 +117,9 @@ public class BasicStartupFrame {
|
||||||
// not packed in updateStatus method
|
// not packed in updateStatus method
|
||||||
packFrame();
|
packFrame();
|
||||||
|
|
||||||
updatePortToUpdateObfuscatedFirmware(currentHardware);
|
if (isObfusacted) {
|
||||||
|
updatePortToUpdateObfuscatedFirmware(currentHardware);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void updatePortToUpdateObfuscatedFirmware(final AvailableHardware currentHardware) {
|
private void updatePortToUpdateObfuscatedFirmware(final AvailableHardware currentHardware) {
|
||||||
|
|
Loading…
Reference in New Issue