2020-11-05 19:22:38 -04:00
|
|
|
#include "AP_DAL_RangeFinder.h"
|
|
|
|
|
|
|
|
#include <AP_Logger/AP_Logger.h>
|
|
|
|
|
|
|
|
#include <AP_RangeFinder/AP_RangeFinder_Backend.h>
|
|
|
|
#include "AP_DAL.h"
|
2020-11-26 06:39:57 -04:00
|
|
|
#include <AP_BoardConfig/AP_BoardConfig.h>
|
2022-10-27 22:38:06 -03:00
|
|
|
#include <AP_Vehicle/AP_Vehicle_Type.h>
|
2020-11-05 19:22:38 -04:00
|
|
|
|
|
|
|
AP_DAL_RangeFinder::AP_DAL_RangeFinder()
|
|
|
|
{
|
2020-11-26 06:39:57 -04:00
|
|
|
#if !APM_BUILD_TYPE(APM_BUILD_AP_DAL_Standalone) && !APM_BUILD_TYPE(APM_BUILD_Replay)
|
|
|
|
_RRNH.num_sensors = AP::rangefinder()->num_sensors();
|
|
|
|
_RRNI = new log_RRNI[_RRNH.num_sensors];
|
|
|
|
_backend = new AP_DAL_RangeFinder_Backend *[_RRNH.num_sensors];
|
|
|
|
if (!_RRNI || !_backend) {
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
for (uint8_t i=0; i<_RRNH.num_sensors; i++) {
|
2020-11-05 19:22:38 -04:00
|
|
|
_RRNI[i].instance = i;
|
|
|
|
}
|
2020-11-26 06:39:57 -04:00
|
|
|
for (uint8_t i=0; i<_RRNH.num_sensors; i++) {
|
2020-11-05 19:22:38 -04:00
|
|
|
// this avoids having to discard a const....
|
|
|
|
_backend[i] = new AP_DAL_RangeFinder_Backend(_RRNI[i]);
|
2020-11-26 06:39:57 -04:00
|
|
|
if (!_backend[i]) {
|
|
|
|
goto failed;
|
|
|
|
}
|
2020-11-05 19:22:38 -04:00
|
|
|
}
|
2020-11-26 06:39:57 -04:00
|
|
|
return;
|
|
|
|
failed:
|
2021-10-10 20:38:43 -03:00
|
|
|
AP_BoardConfig::allocation_error("DAL backends");
|
2020-11-26 06:39:57 -04:00
|
|
|
#endif
|
2020-11-05 19:22:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int16_t AP_DAL_RangeFinder::ground_clearance_cm_orient(enum Rotation orientation) const
|
|
|
|
{
|
|
|
|
#if !APM_BUILD_TYPE(APM_BUILD_AP_DAL_Standalone)
|
|
|
|
const auto *rangefinder = AP::rangefinder();
|
|
|
|
|
|
|
|
if (orientation != ROTATION_PITCH_270) {
|
|
|
|
// the EKF only asks for this from a specific orientation. Thankfully.
|
|
|
|
INTERNAL_ERROR(AP_InternalError::error_t::flow_of_control);
|
|
|
|
return rangefinder->ground_clearance_cm_orient(orientation);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return _RRNH.ground_clearance_cm;
|
|
|
|
}
|
|
|
|
|
|
|
|
int16_t AP_DAL_RangeFinder::max_distance_cm_orient(enum Rotation orientation) const
|
|
|
|
{
|
|
|
|
#if !APM_BUILD_TYPE(APM_BUILD_AP_DAL_Standalone)
|
|
|
|
if (orientation != ROTATION_PITCH_270) {
|
2020-11-09 04:49:27 -04:00
|
|
|
const auto *rangefinder = AP::rangefinder();
|
2020-11-05 19:22:38 -04:00
|
|
|
// the EKF only asks for this from a specific orientation. Thankfully.
|
|
|
|
INTERNAL_ERROR(AP_InternalError::error_t::flow_of_control);
|
2022-05-26 05:03:17 -03:00
|
|
|
return rangefinder->max_distance_cm_orient(orientation);
|
2020-11-05 19:22:38 -04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return _RRNH.max_distance_cm;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AP_DAL_RangeFinder::start_frame()
|
|
|
|
{
|
|
|
|
const auto *rangefinder = AP::rangefinder();
|
|
|
|
if (rangefinder == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const log_RRNH old = _RRNH;
|
2020-11-09 04:49:27 -04:00
|
|
|
|
|
|
|
// EKF only asks for this *down*.
|
2020-11-05 19:22:38 -04:00
|
|
|
_RRNH.ground_clearance_cm = rangefinder->ground_clearance_cm_orient(ROTATION_PITCH_270);
|
2020-11-07 17:29:45 -04:00
|
|
|
_RRNH.max_distance_cm = rangefinder->max_distance_cm_orient(ROTATION_PITCH_270);
|
2020-11-05 19:22:38 -04:00
|
|
|
|
2020-11-26 20:08:10 -04:00
|
|
|
WRITE_REPLAY_BLOCK_IFCHANGED(RRNH, _RRNH, old);
|
|
|
|
|
2020-11-26 06:39:57 -04:00
|
|
|
for (uint8_t i=0; i<_RRNH.num_sensors; i++) {
|
2020-11-05 19:22:38 -04:00
|
|
|
auto *backend = rangefinder->get_backend(i);
|
|
|
|
if (backend == nullptr) {
|
2022-12-17 08:48:54 -04:00
|
|
|
continue;
|
2020-11-05 19:22:38 -04:00
|
|
|
}
|
|
|
|
_backend[i]->start_frame(backend);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
AP_DAL_RangeFinder_Backend::AP_DAL_RangeFinder_Backend(struct log_RRNI &RRNI) :
|
|
|
|
_RRNI(RRNI)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void AP_DAL_RangeFinder_Backend::start_frame(AP_RangeFinder_Backend *backend) {
|
|
|
|
const log_RRNI old = _RRNI;
|
|
|
|
_RRNI.orientation = backend->orientation();
|
|
|
|
_RRNI.status = (uint8_t)backend->status();
|
|
|
|
_RRNI.pos_offset = backend->get_pos_offset();
|
2020-11-12 19:45:28 -04:00
|
|
|
_RRNI.distance_cm = backend->distance_cm();
|
2020-11-07 17:29:45 -04:00
|
|
|
WRITE_REPLAY_BLOCK_IFCHANGED(RRNI, _RRNI, old);
|
2020-11-05 19:22:38 -04:00
|
|
|
}
|
|
|
|
|
2020-11-08 21:28:58 -04:00
|
|
|
// return true if we have a range finder with the specified orientation
|
|
|
|
bool AP_DAL_RangeFinder::has_orientation(enum Rotation orientation) const
|
|
|
|
{
|
2020-11-26 06:39:57 -04:00
|
|
|
for (uint8_t i=0; i<_RRNH.num_sensors; i++) {
|
2020-11-08 21:28:58 -04:00
|
|
|
if (_RRNI[i].orientation == orientation) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-11-05 19:22:38 -04:00
|
|
|
|
|
|
|
AP_DAL_RangeFinder_Backend *AP_DAL_RangeFinder::get_backend(uint8_t id) const
|
|
|
|
{
|
2020-11-26 06:39:57 -04:00
|
|
|
if (id >= RANGEFINDER_MAX_INSTANCES) {
|
2020-12-01 06:26:07 -04:00
|
|
|
INTERNAL_ERROR(AP_InternalError::error_t::flow_of_control);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
if (id >= _RRNH.num_sensors) {
|
2020-11-05 19:22:38 -04:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return _backend[id];
|
|
|
|
}
|
2020-11-26 06:39:57 -04:00
|
|
|
|
|
|
|
void AP_DAL_RangeFinder::handle_message(const log_RRNH &msg)
|
|
|
|
{
|
|
|
|
_RRNH = msg;
|
|
|
|
if (_RRNH.num_sensors > 0 && _RRNI == nullptr) {
|
|
|
|
_RRNI = new log_RRNI[_RRNH.num_sensors];
|
|
|
|
_backend = new AP_DAL_RangeFinder_Backend *[_RRNH.num_sensors];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AP_DAL_RangeFinder::handle_message(const log_RRNI &msg)
|
|
|
|
{
|
|
|
|
if (_RRNI != nullptr && msg.instance < _RRNH.num_sensors) {
|
|
|
|
_RRNI[msg.instance] = msg;
|
|
|
|
if (_backend != nullptr && _backend[msg.instance] == nullptr) {
|
|
|
|
_backend[msg.instance] = new AP_DAL_RangeFinder_Backend(_RRNI[msg.instance]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|