mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-20 14:55:21 +03:00
Fix: the wrong ability to turn on HORIZON_MODE without ACC sensors (#13892)
added check of acc sensor enabled condition by turn on horizon mode
This commit is contained in:
parent
f71170db1b
commit
654d18ced4
1 changed files with 1 additions and 1 deletions
|
@ -1007,7 +1007,7 @@ void processRxModes(timeUs_t currentTimeUs)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (IS_RC_MODE_ACTIVE(BOXHORIZON) && canUseHorizonMode) {
|
if (IS_RC_MODE_ACTIVE(BOXHORIZON) && canUseHorizonMode && sensors(SENSOR_ACC)) {
|
||||||
DISABLE_FLIGHT_MODE(ANGLE_MODE);
|
DISABLE_FLIGHT_MODE(ANGLE_MODE);
|
||||||
if (!FLIGHT_MODE(HORIZON_MODE)) {
|
if (!FLIGHT_MODE(HORIZON_MODE)) {
|
||||||
ENABLE_FLIGHT_MODE(HORIZON_MODE);
|
ENABLE_FLIGHT_MODE(HORIZON_MODE);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue