rusEFI console to compare current bundle against auto-DFU bundle #3266
putting signature into equation
This commit is contained in:
parent
9ad452d0bd
commit
1be3343c2c
|
@ -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);
|
||||
});
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue