mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-17 21:35:44 +03:00
added cli settings for pidvel
added (unsupported) GPS nav MSP numbers.
This commit is contained in:
parent
efedff771e
commit
0c46bdbfc8
3 changed files with 3345 additions and 3327 deletions
|
@ -209,6 +209,9 @@ const clivalue_t valueTable[] = {
|
|||
{ "p_level", VAR_UINT8, &cfg.P8[PIDLEVEL], 0, 200 },
|
||||
{ "i_level", VAR_UINT8, &cfg.I8[PIDLEVEL], 0, 200 },
|
||||
{ "d_level", VAR_UINT8, &cfg.D8[PIDLEVEL], 0, 200 },
|
||||
{ "p_vel", VAR_UINT8, &cfg.P8[PIDVEL], 0, 200 },
|
||||
{ "i_vel", VAR_UINT8, &cfg.I8[PIDVEL], 0, 200 },
|
||||
{ "d_vel", VAR_UINT8, &cfg.D8[PIDVEL], 0, 200 },
|
||||
};
|
||||
|
||||
#define VALUE_COUNT (sizeof(valueTable) / sizeof(clivalue_t))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue