ardupilot/Rover/precision_landing.cpp
Peter Barker fd2fd70a8a Rover: correct initialisation of PrecLand buffers
this value determines the size of buffers allocated.

Too high and you waste RAM.  Too low and you probably won't store data correctly.
2024-09-24 10:56:57 +09:00

22 lines
453 B
C++

//
// functions to support precision landing
//
#include "Rover.h"
#if AC_PRECLAND_ENABLED
void Rover::init_precland()
{
// scheduler table specifies 400Hz, but we can call it no faster
// than the scheduler loop rate:
rover.precland.init(MIN(400, scheduler.get_loop_rate_hz()));
}
void Rover::update_precland()
{
// alt will be unused if we pass false through as the second parameter:
return precland.update(0, false);
}
#endif