mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-23 10:57:34 +08:00
fixing structure initalization
This commit is contained in:
committed by
Lorenz Meier
parent
3aaad68c76
commit
3ce7d13c51
@@ -67,8 +67,8 @@ FollowTarget::FollowTarget(Navigator *navigator, const char *name) :
|
||||
_radius_entered(false),
|
||||
_radius_exited(false),
|
||||
_last_update_time(0),
|
||||
_current_target_motion({0}),
|
||||
_previous_target_motion({0})
|
||||
_current_target_motion({}),
|
||||
_previous_target_motion({})
|
||||
{
|
||||
updateParams();
|
||||
_current_vel.zero();
|
||||
|
||||
Reference in New Issue
Block a user