mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-25 17:25:20 +03:00
Enable telemetry_inversion by default on STM32F30x targets because the
hardware supports inversion natively.
This commit is contained in:
parent
3cf77579ba
commit
45c82741e7
1 changed files with 5 additions and 0 deletions
|
@ -803,6 +803,11 @@ void validateAndFixConfig(void)
|
|||
}
|
||||
#endif
|
||||
|
||||
#ifdef STM32F303xC
|
||||
// hardware supports serial port inversion, make users life easier for those that want to connect SBus RX's
|
||||
masterConfig.telemetryConfig.telemetry_inversion = 1;
|
||||
#endif
|
||||
|
||||
/*
|
||||
* The retarded_arm setting is incompatible with pid_at_min_throttle because full roll causes the craft to roll over on the ground.
|
||||
* The pid_at_min_throttle implementation ignores yaw on the ground, but doesn't currently ignore roll when retarded_arm is enabled.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue