mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-13 11:29:53 +03:00
11 lines
385 B
JavaScript
Executable file
11 lines
385 B
JavaScript
Executable file
'use strict';
|
|
|
|
var CONFIGURATOR = {
|
|
// all versions are specified and compared using semantic versioning http://semver.org/
|
|
'minfirmwareVersionAccepted': '3.0.0',
|
|
'maxFirmwareVersionAccepted': '3.2.0', // Condition is < (lt) so we accept all in 3.0 branch
|
|
'connectionValid': false,
|
|
'connectionValidCliOnly': false,
|
|
'cliActive': false,
|
|
'cliValid': false
|
|
};
|