You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
835 B
33 lines
835 B
#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; |
|
};
|
|
|