rusEFI console to compare current bundle against auto-DFU bundle #3266

putting signature into equation
This commit is contained in:
rusefillc 2021-09-25 18:17:32 -04:00
parent 1807a6f6ce
commit b1a99c75d5
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ public class BroadcastTab {
}
new Thread(() -> {
String autoDetectedPort = PortDetector.autoDetectSerial(null);
String autoDetectedPort = PortDetector.autoDetectSerial(null).getSerialPort();
SwingUtilities.invokeLater(() -> {
startBroadcasting(authToken, autoDetectedPort);
});

View File

@ -102,7 +102,7 @@ public class ConnectPanel {
}
private void tryToConnect(ConnectionStateListener connectionStateListener) {
String autoDetectedPort = PortDetector.autoDetectSerial(null);
String autoDetectedPort = PortDetector.autoDetectSerial(null).getSerialPort();
if (autoDetectedPort == null) {
status.setText("rusEFI not found");
connect.setEnabled(true);