mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 16:25:31 +03:00
Updating known issues.
This commit is contained in:
parent
350b6a5864
commit
3e0370ff09
2 changed files with 3 additions and 0 deletions
|
@ -58,3 +58,5 @@ The tests are currently always compiled with debugging information enabled, ther
|
|||
##Known Issues
|
||||
|
||||
* Softserial RX on STM32F3 does not work. TX is fine.
|
||||
* Dynamic throttle PID does not work with new pid controller.
|
||||
* Autotune does not with with new pid controller.
|
||||
|
|
|
@ -179,6 +179,7 @@ void annexCode(void)
|
|||
dynP8[axis] = (uint16_t)currentProfile.pidProfile.P8[axis] * prop1 / 100;
|
||||
dynI8[axis] = (uint16_t)currentProfile.pidProfile.I8[axis] * prop1 / 100;
|
||||
dynD8[axis] = (uint16_t)currentProfile.pidProfile.D8[axis] * prop1 / 100;
|
||||
|
||||
if (rcData[axis] < masterConfig.rxConfig.midrc)
|
||||
rcCommand[axis] = -rcCommand[axis];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue