2016-11-14 17:47:45 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "RangeFinder.h"
|
|
|
|
#include "RangeFinder_Backend.h"
|
|
|
|
|
|
|
|
class AP_RangeFinder_uLanding : public AP_RangeFinder_Backend
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
// constructor
|
2017-08-07 00:41:01 -03:00
|
|
|
AP_RangeFinder_uLanding(RangeFinder::RangeFinder_State &_state,
|
2018-02-23 08:11:47 -04:00
|
|
|
AP_SerialManager &serial_manager,
|
|
|
|
uint8_t serial_instance);
|
2016-11-14 17:47:45 -04:00
|
|
|
|
|
|
|
// static detection function
|
2018-02-23 08:11:47 -04:00
|
|
|
static bool detect(AP_SerialManager &serial_manager, uint8_t serial_instance);
|
2016-11-14 17:47:45 -04:00
|
|
|
|
|
|
|
// update state
|
|
|
|
void update(void);
|
|
|
|
|
2017-08-08 04:32:53 -03:00
|
|
|
protected:
|
|
|
|
|
|
|
|
MAV_DISTANCE_SENSOR _get_mav_distance_sensor_type() const override {
|
|
|
|
return MAV_DISTANCE_SENSOR_RADAR;
|
|
|
|
}
|
|
|
|
|
2016-11-14 17:47:45 -04:00
|
|
|
private:
|
2017-09-06 14:43:33 -03:00
|
|
|
// detect uLanding Firmware Version
|
|
|
|
bool detect_version(void);
|
|
|
|
|
2016-11-14 17:47:45 -04:00
|
|
|
// get a reading
|
|
|
|
bool get_reading(uint16_t &reading_cm);
|
|
|
|
|
2017-09-15 14:05:20 -03:00
|
|
|
AP_HAL::UARTDriver *uart;
|
|
|
|
uint8_t _linebuf[6];
|
|
|
|
uint8_t _linebuf_len;
|
|
|
|
bool _version_known;
|
|
|
|
uint8_t _header;
|
|
|
|
uint8_t _version;
|
2016-11-14 17:47:45 -04:00
|
|
|
};
|