Skip to content

Commit

Permalink
PositionControl: addess @bkueng 's comment in #11056
Browse files Browse the repository at this point in the history
  • Loading branch information
MaEtUgR committed Jan 26, 2019
1 parent f9ec0cd commit 573dd89
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 15 deletions.
19 changes: 6 additions & 13 deletions src/modules/mc_pos_control/PositionControl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,24 +55,17 @@ void PositionControl::updateState(const PositionControlStates &states)
_vel_dot = states.acceleration;
}

void PositionControl::_setCtrlFlagTrue()
void PositionControl::_setCtrlFlag(bool value)
{
for (int i = 0; i <= 2; i++) {
_ctrl_pos[i] = _ctrl_vel[i] = true;
}
}

void PositionControl::_setCtrlFlagFalse()
{
for (int i = 0; i <= 2; i++) {
_ctrl_pos[i] = _ctrl_vel[i] = false;
_ctrl_pos[i] = _ctrl_vel[i] = value;
}
}

bool PositionControl::updateSetpoint(const vehicle_local_position_setpoint_s &setpoint)
{
// Only for logging purpose: by default we use the entire position-velocity control-loop pipeline
_setCtrlFlagTrue();
// by default we use the entire position-velocity control-loop pipeline (flag only for logging purpose)
_setCtrlFlag(true);

_pos_sp = Vector3f(setpoint.x, setpoint.y, setpoint.z);
_vel_sp = Vector3f(setpoint.vx, setpoint.vy, setpoint.vz);
Expand Down Expand Up @@ -212,8 +205,8 @@ bool PositionControl::_interfaceMapping()
// throttle down such that vehicle goes down with
// 70% of throttle range between min and hover
_thr_sp(2) = -(MPC_THR_MIN.get() + (MPC_THR_HOVER.get() - MPC_THR_MIN.get()) * 0.7f);
// position and velocity control-loop is not used (note: only for logging purpose)
_setCtrlFlagFalse(); // position/velocity control-loop is not used
// position and velocity control-loop is currently unused (flag only for logging purpose)
_setCtrlFlag(false);
}

return !(failsafe);
Expand Down
3 changes: 1 addition & 2 deletions src/modules/mc_pos_control/PositionControl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,7 @@ class PositionControl : public ModuleParams

void _positionController(); /** applies the P-position-controller */
void _velocityController(const float &dt); /** applies the PID-velocity-controller */
void _setCtrlFlagTrue(); /**< set control-loop flags to true (only required for logging) */
void _setCtrlFlagFalse(); /**< set control-loop flags to false (only required for logging) */
void _setCtrlFlag(bool value); /**< set control-loop flags (only required for logging) */

matrix::Vector3f _pos{}; /**< MC position */
matrix::Vector3f _vel{}; /**< MC velocity */
Expand Down

0 comments on commit 573dd89

Please sign in to comment.