diff --git a/js/serial_backend.js b/js/serial_backend.js
index ef81b3f0..d6b7fcd4 100644
--- a/js/serial_backend.js
+++ b/js/serial_backend.js
@@ -106,7 +106,7 @@ $(document).ready(function() {
});
function onOpen(openInfo) {
- if (openInfo.connectionId > 0) {
+ if (openInfo) {
// update connected_to
GUI.connected_to = GUI.connecting_to;
diff --git a/js/stm32.js b/js/stm32.js
index 096b0729..213b1d29 100644
--- a/js/stm32.js
+++ b/js/stm32.js
@@ -84,7 +84,7 @@ STM32_protocol.prototype.connect = function(hex) {
if (!$('input.updating').is(':checked')) {
serial.connect(selected_port, {bitrate: baud}, function(openInfo) {
- if (openInfo.connectionId > 0) {
+ if (openInfo) {
console.log('Sending ascii "R" to reboot');
// we are connected, disabling connect button in the UI
@@ -99,8 +99,10 @@ STM32_protocol.prototype.connect = function(hex) {
serial.disconnect(function(result) {
if (result) {
serial.connect(selected_port, {bitrate: flashing_bitrate, parityBit: 'even', stopBits: 'one'}, function(openInfo) {
- if (openInfo.connectionId > 0) {
+ if (openInfo) {
self.initialize();
+ } else {
+ GUI.log('Failed to open serial port');
}
});
} else {
@@ -108,15 +110,19 @@ STM32_protocol.prototype.connect = function(hex) {
}
});
});
+ } else {
+ GUI.log('Failed to open serial port');
}
});
} else {
serial.connect(selected_port, {bitrate: flashing_bitrate, parityBit: 'even', stopBits: 'one'}, function(openInfo) {
- if (openInfo.connectionId > 0) {
+ if (openInfo) {
// we are connected, disabling connect button in the UI
GUI.connect_lock = true;
self.initialize();
+ } else {
+ GUI.log('Failed to open serial port');
}
});
}