mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-13 11:29:53 +03:00
14 lines
442 B
JavaScript
Executable file
14 lines
442 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': '9.0.0', // Condition is < (lt) so we accept all in 8.x branch
|
|
'connectionValid': false,
|
|
'connectionValidCliOnly': false,
|
|
'cliActive': false,
|
|
'cliValid': false,
|
|
'connection': false
|
|
};
|
|
|
|
module.exports = CONFIGURATOR;
|