mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-17 13:25:30 +03:00
Added options to allow further TPA configuration
Replaced define BREAKPOINT with cfg option Added tpa and tpa_breakpoint to cli
This commit is contained in:
parent
4faa8d0043
commit
74a54d81dd
4 changed files with 6 additions and 4 deletions
|
@ -164,6 +164,8 @@ const clivalue_t valueTable[] = {
|
|||
{ "thr_expo", VAR_UINT8, &cfg.thrExpo8, 0, 100 },
|
||||
{ "roll_pitch_rate", VAR_UINT8, &cfg.rollPitchRate, 0, 100 },
|
||||
{ "yawrate", VAR_UINT8, &cfg.yawRate, 0, 100 },
|
||||
{ "tparate", VAR_UINT8, &cfg.dynThrPID, 0, 100},
|
||||
{ "tpa_breakpoint", VAR_UINT16, &cfg.tpaBreakPoint, 1000, 2000},
|
||||
{ "failsafe_delay", VAR_UINT8, &cfg.failsafe_delay, 0, 200 },
|
||||
{ "failsafe_off_delay", VAR_UINT8, &cfg.failsafe_off_delay, 0, 200 },
|
||||
{ "failsafe_throttle", VAR_UINT16, &cfg.failsafe_throttle, 1000, 2000 },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue