Skip to content

Commit

Permalink
commander_params: enable RC override by default
Browse files Browse the repository at this point in the history
It doesn't affect fixed wing flying anymore. I disabled it for the
deltaquad since I presume @sanderux prefers to have the feature disabled
even when flying in multicopter mode.
  • Loading branch information
MaEtUgR committed Jul 22, 2019
1 parent 706500f commit e964af9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ROMFS/px4fmu_common/init.d/airframes/13013_deltaquad
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ then
param set VT_TRANS_TIMEOUT 22
param set VT_F_TRANS_RAMP 4

param set COM_RC_OVERRIDE 0
fi

set MAV_TYPE 22
Expand Down
2 changes: 1 addition & 1 deletion src/modules/commander/commander_params.c
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ PARAM_DEFINE_FLOAT(COM_ARM_MAG, 0.15f);
* @boolean
* @group Commander
*/
PARAM_DEFINE_INT32(COM_RC_OVERRIDE, 0);
PARAM_DEFINE_INT32(COM_RC_OVERRIDE, 1);

/**
* Require valid mission to arm
Expand Down

0 comments on commit e964af9

Please sign in to comment.