mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
AP_RangeFinder: fixed support for multiple Benewake_CAN CAN lidars
This commit is contained in:
parent
66395ce195
commit
7ab343dd66
@ -1,4 +1,5 @@
|
|||||||
#include <AP_HAL/AP_HAL.h>
|
#include <AP_HAL/AP_HAL.h>
|
||||||
|
#include <AP_BoardConfig/AP_BoardConfig.h>
|
||||||
#include "AP_RangeFinder_Benewake_CAN.h"
|
#include "AP_RangeFinder_Benewake_CAN.h"
|
||||||
|
|
||||||
#if HAL_MAX_CAN_PROTOCOL_DRIVERS
|
#if HAL_MAX_CAN_PROTOCOL_DRIVERS
|
||||||
@ -22,16 +23,30 @@ const AP_Param::GroupInfo AP_RangeFinder_Benewake_CAN::var_info[] = {
|
|||||||
AP_GROUPEND
|
AP_GROUPEND
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Benewake_MultiCAN *AP_RangeFinder_Benewake_CAN::multican;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
constructor
|
constructor
|
||||||
*/
|
*/
|
||||||
AP_RangeFinder_Benewake_CAN::AP_RangeFinder_Benewake_CAN(RangeFinder::RangeFinder_State &_state, AP_RangeFinder_Params &_params) :
|
AP_RangeFinder_Benewake_CAN::AP_RangeFinder_Benewake_CAN(RangeFinder::RangeFinder_State &_state, AP_RangeFinder_Params &_params) :
|
||||||
CANSensor("Benewake"),
|
|
||||||
AP_RangeFinder_Backend(_state, _params)
|
AP_RangeFinder_Backend(_state, _params)
|
||||||
{
|
{
|
||||||
|
if (multican == nullptr) {
|
||||||
|
multican = new Benewake_MultiCAN();
|
||||||
|
if (multican == nullptr) {
|
||||||
|
AP_BoardConfig::allocation_error("Benewake_CAN");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
// add to linked list of drivers
|
||||||
|
WITH_SEMAPHORE(multican->sem);
|
||||||
|
auto *prev = multican->drivers;
|
||||||
|
next = prev;
|
||||||
|
multican->drivers = this;
|
||||||
|
}
|
||||||
|
|
||||||
AP_Param::setup_object_defaults(this, var_info);
|
AP_Param::setup_object_defaults(this, var_info);
|
||||||
register_driver(AP_CANManager::Driver_Type_Benewake);
|
|
||||||
state.var_info = var_info;
|
state.var_info = var_info;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -53,27 +68,40 @@ void AP_RangeFinder_Benewake_CAN::update(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// handler for incoming frames. These come in at 100Hz
|
// handler for incoming frames. These come in at 100Hz
|
||||||
void AP_RangeFinder_Benewake_CAN::handle_frame(AP_HAL::CANFrame &frame)
|
bool AP_RangeFinder_Benewake_CAN::handle_frame(AP_HAL::CANFrame &frame)
|
||||||
{
|
{
|
||||||
WITH_SEMAPHORE(_sem);
|
WITH_SEMAPHORE(_sem);
|
||||||
const uint16_t id = frame.id & AP_HAL::CANFrame::MaskStdID;
|
const uint16_t id = frame.id & AP_HAL::CANFrame::MaskStdID;
|
||||||
if (receive_id != 0 && id != uint16_t(receive_id.get())) {
|
if (receive_id != 0 && id != uint16_t(receive_id.get())) {
|
||||||
// incorrect receive ID
|
// incorrect receive ID
|
||||||
return;
|
return false;
|
||||||
}
|
}
|
||||||
if (last_recv_id != -1 && id != last_recv_id) {
|
if (last_recv_id != -1 && id != last_recv_id) {
|
||||||
// changing ID
|
// changing ID
|
||||||
return;
|
return false;
|
||||||
}
|
}
|
||||||
last_recv_id = id;
|
last_recv_id = id;
|
||||||
|
|
||||||
const uint16_t dist_cm = (frame.data[1]<<8) | frame.data[0];
|
const uint16_t dist_cm = (frame.data[1]<<8) | frame.data[0];
|
||||||
const uint16_t snr = (frame.data[3]<<8) | frame.data[2];
|
const uint16_t snr = (frame.data[3]<<8) | frame.data[2];
|
||||||
if (snr_min != 0 && snr < uint16_t(snr_min.get())) {
|
if (snr_min != 0 && snr < uint16_t(snr_min.get())) {
|
||||||
// too low signal strength
|
// too low signal strength
|
||||||
return;
|
return true;
|
||||||
}
|
}
|
||||||
_distance_sum_cm += dist_cm;
|
_distance_sum_cm += dist_cm;
|
||||||
_distance_count++;
|
_distance_count++;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// handle frames from CANSensor, passing to the drivers
|
||||||
|
void Benewake_MultiCAN::handle_frame(AP_HAL::CANFrame &frame)
|
||||||
|
{
|
||||||
|
WITH_SEMAPHORE(sem);
|
||||||
|
for (auto *d = drivers; d; d=d->next) {
|
||||||
|
if (d->handle_frame(frame)) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // HAL_MAX_CAN_PROTOCOL_DRIVERS
|
#endif // HAL_MAX_CAN_PROTOCOL_DRIVERS
|
||||||
|
@ -5,14 +5,18 @@
|
|||||||
|
|
||||||
#if HAL_MAX_CAN_PROTOCOL_DRIVERS
|
#if HAL_MAX_CAN_PROTOCOL_DRIVERS
|
||||||
|
|
||||||
class AP_RangeFinder_Benewake_CAN : public AP_RangeFinder_Backend, public CANSensor {
|
class Benewake_MultiCAN;
|
||||||
|
|
||||||
|
class AP_RangeFinder_Benewake_CAN : public AP_RangeFinder_Backend {
|
||||||
public:
|
public:
|
||||||
|
friend class Benewake_MultiCAN;
|
||||||
|
|
||||||
AP_RangeFinder_Benewake_CAN(RangeFinder::RangeFinder_State &_state, AP_RangeFinder_Params &_params);
|
AP_RangeFinder_Benewake_CAN(RangeFinder::RangeFinder_State &_state, AP_RangeFinder_Params &_params);
|
||||||
|
|
||||||
void update() override;
|
void update() override;
|
||||||
|
|
||||||
// handler for incoming frames
|
// handler for incoming frames. Return true if consumed
|
||||||
void handle_frame(AP_HAL::CANFrame &frame) override;
|
bool handle_frame(AP_HAL::CANFrame &frame);
|
||||||
|
|
||||||
static const struct AP_Param::GroupInfo var_info[];
|
static const struct AP_Param::GroupInfo var_info[];
|
||||||
|
|
||||||
@ -20,6 +24,7 @@ protected:
|
|||||||
virtual MAV_DISTANCE_SENSOR _get_mav_distance_sensor_type() const override {
|
virtual MAV_DISTANCE_SENSOR _get_mav_distance_sensor_type() const override {
|
||||||
return MAV_DISTANCE_SENSOR_RADAR;
|
return MAV_DISTANCE_SENSOR_RADAR;
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
float _distance_sum_cm;
|
float _distance_sum_cm;
|
||||||
uint32_t _distance_count;
|
uint32_t _distance_count;
|
||||||
@ -27,6 +32,26 @@ private:
|
|||||||
|
|
||||||
AP_Int32 snr_min;
|
AP_Int32 snr_min;
|
||||||
AP_Int32 receive_id;
|
AP_Int32 receive_id;
|
||||||
|
|
||||||
|
static Benewake_MultiCAN *multican;
|
||||||
|
AP_RangeFinder_Benewake_CAN *next;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// a class to allow for multiple Benewake_CAN backends with one
|
||||||
|
// CANSensor driver
|
||||||
|
class Benewake_MultiCAN : public CANSensor {
|
||||||
|
public:
|
||||||
|
Benewake_MultiCAN() : CANSensor("Benewake") {
|
||||||
|
register_driver(AP_CANManager::Driver_Type_Benewake);
|
||||||
|
}
|
||||||
|
|
||||||
|
// handler for incoming frames
|
||||||
|
void handle_frame(AP_HAL::CANFrame &frame) override;
|
||||||
|
|
||||||
|
HAL_Semaphore sem;
|
||||||
|
AP_RangeFinder_Benewake_CAN *drivers;
|
||||||
|
};
|
||||||
|
|
||||||
#endif //HAL_MAX_CAN_PROTOCOL_DRIVERS
|
#endif //HAL_MAX_CAN_PROTOCOL_DRIVERS
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user