diff --git a/js/serial_backend.js b/js/serial_backend.js index 083aaeaa92..45dd92a6d6 100644 --- a/js/serial_backend.js +++ b/js/serial_backend.js @@ -139,7 +139,13 @@ function onOpen(openInfo) { MSP.send_message(MSP_codes.MSP_IDENT, false, false, function () { GUI.timeout_remove('connecting'); // kill connecting timer - GUI.log(chrome.i18n.getMessage('firmwareVersion', [CONFIG.version])); + // silencing firmware shoutout, since nobody cares anyway + // GUI.log(chrome.i18n.getMessage('firmwareVersion', [CONFIG.version])); + + if (!bit_check(CONFIG.capability, 30)) { + GUI.log('Configurator detected that you are running an old version of the firmware and will operate in compatibility mode,\ + to enjoy all of the recently implemented features, please update your firmware.'); + } if (CONFIG.version >= CONFIGURATOR.firmwareVersionAccepted) { CONFIGURATOR.connectionValid = true;