mirror of https://github.com/ArduPilot/ardupilot
27 lines
554 B
C++
27 lines
554 B
C++
#pragma once
|
|
|
|
#include "AP_RangeFinder.h"
|
|
#include "AP_RangeFinder_Backend_Serial.h"
|
|
|
|
class AP_RangeFinder_LightWareSerial : public AP_RangeFinder_Backend_Serial
|
|
{
|
|
|
|
public:
|
|
|
|
using AP_RangeFinder_Backend_Serial::AP_RangeFinder_Backend_Serial;
|
|
|
|
protected:
|
|
|
|
virtual MAV_DISTANCE_SENSOR _get_mav_distance_sensor_type() const override {
|
|
return MAV_DISTANCE_SENSOR_LASER;
|
|
}
|
|
|
|
private:
|
|
// get a reading
|
|
bool get_reading(uint16_t &reading_cm) override;
|
|
|
|
char linebuf[10];
|
|
uint8_t linebuf_len = 0;
|
|
uint32_t last_init_ms;
|
|
};
|