mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-27 23:04:07 +08:00
FlightTask StraightLine: check if target and origin are the same
This commit is contained in:
parent
8998714130
commit
9e8c3ff0dc
@ -100,6 +100,11 @@ void StraightLine::generateSetpoints(matrix::Vector3f &position_setpoint, matrix
|
||||
|
||||
float StraightLine::getMaxAcc()
|
||||
{
|
||||
// check if origin and target are different points
|
||||
if ((_target - _origin).length() < FLT_EPSILON) {
|
||||
return MPC_ACC_HOR_MAX.get();
|
||||
}
|
||||
|
||||
// unit vector in the direction of the straight line
|
||||
Vector3f u_orig_to_target = (_target - _origin).unit_or_zero();
|
||||
|
||||
@ -130,6 +135,11 @@ float StraightLine::getMaxAcc()
|
||||
|
||||
float StraightLine::getMaxVel()
|
||||
{
|
||||
// check if origin and target are different points
|
||||
if ((_target - _origin).length() < FLT_EPSILON) {
|
||||
return MPC_XY_VEL_MAX.get();
|
||||
}
|
||||
|
||||
// unit vector in the direction of the straight line
|
||||
Vector3f u_orig_to_target = (_target - _origin).unit_or_zero();
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user