2016-04-19 18:32:17 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "RangeFinder.h"
|
|
|
|
#include "RangeFinder_Backend.h"
|
|
|
|
|
|
|
|
class AP_RangeFinder_MaxsonarSerialLV : public AP_RangeFinder_Backend
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
// constructor
|
2017-08-07 00:41:01 -03:00
|
|
|
AP_RangeFinder_MaxsonarSerialLV(RangeFinder::RangeFinder_State &_state,
|
2018-02-23 08:11:47 -04:00
|
|
|
AP_SerialManager &serial_manager,
|
|
|
|
uint8_t serial_instance);
|
2016-04-19 18:32:17 -03:00
|
|
|
|
|
|
|
// static detection function
|
2018-02-23 08:11:47 -04:00
|
|
|
static bool detect(AP_SerialManager &serial_manager, uint8_t serial_instance);
|
2016-04-19 18:32:17 -03:00
|
|
|
|
|
|
|
// update state
|
2018-11-07 07:01:51 -04:00
|
|
|
void update(void) override;
|
2016-04-19 18:32:17 -03:00
|
|
|
|
2017-08-08 04:32:53 -03:00
|
|
|
protected:
|
|
|
|
|
|
|
|
MAV_DISTANCE_SENSOR _get_mav_distance_sensor_type() const override {
|
|
|
|
return MAV_DISTANCE_SENSOR_ULTRASOUND;
|
|
|
|
}
|
|
|
|
|
2016-04-19 18:32:17 -03:00
|
|
|
private:
|
|
|
|
// get a reading
|
|
|
|
bool get_reading(uint16_t &reading_cm);
|
|
|
|
|
|
|
|
AP_HAL::UARTDriver *uart = nullptr;
|
|
|
|
char linebuf[10];
|
|
|
|
uint8_t linebuf_len = 0;
|
|
|
|
};
|