mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-24 00:35:26 +03:00
Initial implementation of new MSP commands (quick and dirty)
Added throttle idle percent value. Added 'gyroUse32kHz'.
This commit is contained in:
parent
f56cade39d
commit
f995c3fa49
5 changed files with 172 additions and 74 deletions
8
js/fc.js
8
js/fc.js
|
@ -256,7 +256,9 @@ var FC = {
|
|||
pid_process_denom: 0,
|
||||
use_unsyncedPwm: 0,
|
||||
fast_pwm_protocol: 0,
|
||||
motor_pwm_rate: 0
|
||||
motor_pwm_rate: 0,
|
||||
digitalIdlePercent: 0,
|
||||
gyroUse32kHz: 0
|
||||
};
|
||||
|
||||
FILTER_CONFIG = {
|
||||
|
@ -283,7 +285,9 @@ var FC = {
|
|||
toleranceBandReduction: 0,
|
||||
itermThrottleGain: 0,
|
||||
pidMaxVelocity: 0,
|
||||
pidMaxVelocityYaw: 0
|
||||
pidMaxVelocityYaw: 0,
|
||||
levelAngleLimit: 0,
|
||||
levelSensitivity: 0
|
||||
};
|
||||
|
||||
SENSOR_CONFIG = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue