mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-16 04:45:24 +03:00
fix missing yaw default when using PGs. this resulted in no yaw from RC
input.
This commit is contained in:
parent
60a41c7706
commit
0b531db549
1 changed files with 2 additions and 1 deletions
|
@ -76,7 +76,8 @@ PG_RESET_TEMPLATE(rcControlsConfig_t, rcControlsConfig,
|
|||
.deadband = 0,
|
||||
.yaw_deadband = 0,
|
||||
.alt_hold_deadband = 40,
|
||||
.alt_hold_fast_change = 1
|
||||
.alt_hold_fast_change = 1,
|
||||
.yaw_control_direction = 1,
|
||||
);
|
||||
|
||||
PG_REGISTER_WITH_RESET_TEMPLATE(armingConfig_t, armingConfig, PG_ARMING_CONFIG, 0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue