File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -534,7 +534,7 @@ void Mixer::select_primary_or_secondary_mixer()
534534 uint16_t rc_override = RF_.command_manager_ .get_rc_override ();
535535
536536 uint16_t rc_attitude_override_active = static_cast <uint16_t >(rc_override & CommandManager::ATTITUDE_OVERRIDDEN);
537- if (rc_attitude_override_active = = 0 ) {
537+ if (rc_attitude_override_active ! = 0 ) {
538538 mixer_to_use_.u [3 ] = primary_mixer_.u [3 ];
539539 mixer_to_use_.u [4 ] = primary_mixer_.u [4 ];
540540 mixer_to_use_.u [5 ] = primary_mixer_.u [5 ];
@@ -545,7 +545,7 @@ void Mixer::select_primary_or_secondary_mixer()
545545 }
546546
547547 uint16_t rc_throttle_override_active = static_cast <uint16_t >(rc_override & CommandManager::T_OVERRIDDEN);
548- if (rc_throttle_override_active = = 0 ) {
548+ if (rc_throttle_override_active ! = 0 ) {
549549 mixer_to_use_.u [0 ] = primary_mixer_.u [0 ];
550550 mixer_to_use_.u [1 ] = primary_mixer_.u [1 ];
551551 mixer_to_use_.u [2 ] = primary_mixer_.u [2 ];
You can’t perform that action at this time.
0 commit comments