Increase min agl for flow from 5 to 30 cm to prevent drift on ground.

This commit is contained in:
James Goppert 2016-10-16 12:12:19 -04:00
parent cd937321c8
commit e73218c112

View File

@ -11,7 +11,7 @@ static const uint32_t REQ_FLOW_INIT_COUNT = 10;
static const uint32_t FLOW_TIMEOUT = 1000000; // 1 s
// minimum flow altitude
static const float flow_min_agl = 0.05;
static const float flow_min_agl = 0.3;
void BlockLocalPositionEstimator::flowInit()
{