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.
31 lines
816 B
31 lines
816 B
#pragma once |
|
|
|
#include "AP_RangeFinder_Benewake.h" |
|
|
|
#ifndef AP_RANGEFINDER_BENEWAKE_TF02_ENABLED |
|
#define AP_RANGEFINDER_BENEWAKE_TF02_ENABLED (AP_RANGEFINDER_BENEWAKE_ENABLED && AP_RANGEFINDER_BACKEND_DEFAULT_ENABLED) |
|
#endif |
|
|
|
#if AP_RANGEFINDER_BENEWAKE_TF02_ENABLED |
|
|
|
class AP_RangeFinder_Benewake_TF02 : public AP_RangeFinder_Benewake |
|
{ |
|
public: |
|
|
|
static AP_RangeFinder_Backend_Serial *create( |
|
RangeFinder::RangeFinder_State &_state, |
|
AP_RangeFinder_Params &_params) { |
|
return new AP_RangeFinder_Benewake_TF02(_state, _params); |
|
} |
|
|
|
protected: |
|
float model_dist_max_cm() const override { return 2200; } |
|
bool has_signal_byte() const override { return true; } |
|
|
|
private: |
|
|
|
using AP_RangeFinder_Benewake::AP_RangeFinder_Benewake; |
|
|
|
}; |
|
|
|
#endif // AP_RANGEFINDER_BENEWAKE_TF02_ENABLED
|
|
|