mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-19 22:35:15 +03:00
MSP_FW_CONFIG frame support
This commit is contained in:
parent
a86c3138d5
commit
0777ef391c
8 changed files with 234 additions and 5 deletions
14
js/fc.js
14
js/fc.js
|
@ -45,7 +45,8 @@ var CONFIG,
|
|||
SENSOR_CONFIG,
|
||||
NAV_POSHOLD,
|
||||
POSITION_ESTIMATOR,
|
||||
RTH_AND_LAND_CONFIG;
|
||||
RTH_AND_LAND_CONFIG,
|
||||
FW_CONFIG;
|
||||
|
||||
var FC = {
|
||||
isRatesInDps: function () {
|
||||
|
@ -374,6 +375,17 @@ var FC = {
|
|||
failsafe_procedure: 0
|
||||
};
|
||||
|
||||
FW_CONFIG = {
|
||||
cruiseThrottle: null,
|
||||
minThrottle: null,
|
||||
maxThrottle: null,
|
||||
maxBankAngle: null,
|
||||
maxClimbAngle: null,
|
||||
maxDiveAngle: null,
|
||||
pitchToThrottle: null,
|
||||
loiterRadius: null
|
||||
};
|
||||
|
||||
RXFAIL_CONFIG = [];
|
||||
},
|
||||
getFeatures: function () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue