mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-13 19:40:22 +03:00
12 lines
410 B
JavaScript
Executable file
12 lines
410 B
JavaScript
Executable file
'use strict';
|
|
|
|
var CONFIGURATOR = {
|
|
// all versions are specified and compared using semantic versioning http://semver.org/
|
|
'minfirmwareVersionAccepted': '7.0.0',
|
|
'maxFirmwareVersionAccepted': '8.0.0', // Condition is < (lt) so we accept all in 7.x branch
|
|
'connectionValid': false,
|
|
'connectionValidCliOnly': false,
|
|
'cliActive': false,
|
|
'cliValid': false,
|
|
'connection': false
|
|
};
|