Skip to content
Snippets Groups Projects
Commit 27dc60a4 authored by baumanta's avatar baumanta Committed by Beat Küng
Browse files

Improve comments

parent ce7dc854
No related branches found
No related tags found
No related merge requests found
......@@ -165,7 +165,7 @@ void CollisionAvoidance::modifySetpoint(Vector2f &original_setpoint, const float
|| new_setpoint(1) > 1.05f * original_setpoint(1));
if (currently_interfering && (currently_interfering != _interfering)) {
mavlink_log_critical(&_mavlink_log_pub, "Collision Avoidance starts interfering");
mavlink_log_critical(&_mavlink_log_pub, "Collision Warning");
}
_interfering = currently_interfering;
......
......@@ -739,16 +739,16 @@ PARAM_DEFINE_INT32(MPC_OBS_AVOID, 0);
PARAM_DEFINE_INT32(MPC_YAW_MODE, 0);
/**
* Flag to enable the use of a range sensor for collision avoidance.
* Flag to enable the use of a MAVLink range sensor for collision avoidance.
*
* @boolean
* @group Multicopter Position Control
*/
PARAM_DEFINE_INT32(MPC_COL_AVOID, 0);
/**
* Minimum Obstacle Distance at which the vehicle should not get closer
* Minimum distance the vehicle should keep to all obstacles
*
* Only relevant if in Position control and the range sensor is active
* Only used in Position mode when collision avoidance is active (see MPC_COL_AVOID).
*
* @min 0
* @max 15
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment