Skip to content
Snippets Groups Projects
Commit 224fbbc2 authored by Julian Oes's avatar Julian Oes Committed by Lorenz Meier
Browse files

land_detector: fix uninitialized value (#4659)

parent d4262bce
No related branches found
No related tags found
No related merge requests found
......@@ -67,7 +67,8 @@ MulticopterLandDetector::MulticopterLandDetector() : LandDetector(),
_ctrl_state{},
_ctrl_mode{},
_landTimer(0),
_freefallTimer(0)
_freefallTimer(0),
_min_trust_start(0)
{
_paramHandle.maxRotation = param_find("LNDMC_ROT_MAX");
_paramHandle.maxVelocity = param_find("LNDMC_XY_VEL_MAX");
......
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