ardupilot/libraries/AP_RangeFinder/AP_RangeFinder_Lanbao.h

39 lines
834 B
C++

#pragma once
#include "AP_RangeFinder.h"
#include "AP_RangeFinder_Backend_Serial.h"
#ifndef AP_RANGEFINDER_LANBAO_ENABLED
#define AP_RANGEFINDER_LANBAO_ENABLED AP_RANGEFINDER_BACKEND_DEFAULT_ENABLED
#endif
#if AP_RANGEFINDER_LANBAO_ENABLED
class AP_RangeFinder_Lanbao : public AP_RangeFinder_Backend_Serial
{
public:
using AP_RangeFinder_Backend_Serial::AP_RangeFinder_Backend_Serial;
// Lanbao is always 115200:
uint32_t initial_baudrate(uint8_t serial_instance) const override {
return 115200;
}
protected:
MAV_DISTANCE_SENSOR _get_mav_distance_sensor_type() const override {
return MAV_DISTANCE_SENSOR_LASER;
}
private:
// get a reading
bool get_reading(float &reading_m) override;
uint8_t buf[6];
uint8_t buf_len = 0;
};
#endif // AP_RANGEFINDER_LANBAO_ENABLED