mirror of https://github.com/ArduPilot/ardupilot
33 lines
976 B
C++
33 lines
976 B
C++
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
#pragma once
|
|
|
|
#include "RangeFinder.h"
|
|
#include "RangeFinder_Backend.h"
|
|
|
|
#define AP_RANGE_FINDER_MAXSONARI2CXL_DEFAULT_ADDR 0x70
|
|
|
|
#define AP_RANGEFINDER_MAXSONARI2CXL 4
|
|
#define AP_RANGE_FINDER_MAXSONARI2CXL_SCALER 1.0
|
|
#define AP_RANGE_FINDER_MAXSONARI2CXL_MIN_DISTANCE 20
|
|
#define AP_RANGE_FINDER_MAXSONARI2CXL_MAX_DISTANCE 765
|
|
|
|
#define AP_RANGE_FINDER_MAXSONARI2CXL_COMMAND_TAKE_RANGE_READING 0x51
|
|
|
|
class AP_RangeFinder_MaxsonarI2CXL : public AP_RangeFinder_Backend
|
|
{
|
|
public:
|
|
// constructor
|
|
AP_RangeFinder_MaxsonarI2CXL(RangeFinder &ranger, uint8_t instance, RangeFinder::RangeFinder_State &_state);
|
|
|
|
// static detection function
|
|
static bool detect(RangeFinder &ranger, uint8_t instance);
|
|
|
|
// update state
|
|
void update(void);
|
|
|
|
private:
|
|
// start a reading
|
|
static bool start_reading(void);
|
|
static bool get_reading(uint16_t &reading_cm);
|
|
};
|