mirror of https://github.com/ArduPilot/ardupilot
34 lines
835 B
C++
34 lines
835 B
C++
#pragma once
|
|
|
|
#include "RangeFinder.h"
|
|
#include "RangeFinder_Backend.h"
|
|
#include <AP_HAL/I2CDevice.h>
|
|
|
|
class AP_RangeFinder_trone : public AP_RangeFinder_Backend
|
|
{
|
|
public:
|
|
// static detection function
|
|
static AP_RangeFinder_Backend *detect(uint8_t bus, RangeFinder &ranger, uint8_t instance,
|
|
RangeFinder::RangeFinder_State &_state);
|
|
|
|
// update state
|
|
void update(void);
|
|
|
|
private:
|
|
// constructor
|
|
AP_RangeFinder_trone(uint8_t bus, RangeFinder &ranger, uint8_t instance,
|
|
RangeFinder::RangeFinder_State &_state);
|
|
|
|
bool measure(void);
|
|
bool collect(uint16_t &distance_cm);
|
|
|
|
bool init(void);
|
|
void timer(void);
|
|
AP_HAL::OwnPtr<AP_HAL::I2CDevice> dev;
|
|
|
|
struct {
|
|
uint32_t sum;
|
|
uint32_t count;
|
|
} accum;
|
|
};
|