mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-18 22:05:17 +03:00
new connect message informing about missing capability
This commit is contained in:
parent
45729ea224
commit
741961cce4
1 changed files with 7 additions and 1 deletions
|
@ -139,7 +139,13 @@ function onOpen(openInfo) {
|
||||||
MSP.send_message(MSP_codes.MSP_IDENT, false, false, function () {
|
MSP.send_message(MSP_codes.MSP_IDENT, false, false, function () {
|
||||||
GUI.timeout_remove('connecting'); // kill connecting timer
|
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 <strong>update</strong> your firmware.');
|
||||||
|
}
|
||||||
|
|
||||||
if (CONFIG.version >= CONFIGURATOR.firmwareVersionAccepted) {
|
if (CONFIG.version >= CONFIGURATOR.firmwareVersionAccepted) {
|
||||||
CONFIGURATOR.connectionValid = true;
|
CONFIGURATOR.connectionValid = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue