mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-23 16:25:19 +03:00
MSP layer
This commit is contained in:
parent
0173efd8ba
commit
4f86dfa946
5 changed files with 1435 additions and 1365 deletions
14
js/fc.js
14
js/fc.js
|
@ -55,7 +55,8 @@ var CONFIG,
|
|||
MIXER_CONFIG,
|
||||
BATTERY_CONFIG,
|
||||
OUTPUT_MAPPING,
|
||||
SETTINGS;
|
||||
SETTINGS,
|
||||
BRAKING_CONFIG;
|
||||
|
||||
var FC = {
|
||||
MAX_SERVO_RATE: 125,
|
||||
|
@ -506,6 +507,17 @@ var FC = {
|
|||
loiterRadius: null
|
||||
};
|
||||
|
||||
BRAKING_CONFIG = {
|
||||
speedThreshold: null,
|
||||
disengageSpeed: null,
|
||||
timeout: null,
|
||||
boostFactor: null,
|
||||
boostTimeout: null,
|
||||
boostSpeedThreshold: null,
|
||||
boostDisengageSpeed: null,
|
||||
bankAngle: null
|
||||
}
|
||||
|
||||
RXFAIL_CONFIG = [];
|
||||
|
||||
OUTPUT_MAPPING = new OutputMappingCollection();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue