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.
21 lines
281 B
21 lines
281 B
4 years ago
|
#pragma once
|
||
|
|
||
|
#include <AP_HAL/AP_HAL.h>
|
||
|
#include "AP_ESC_Telem_Backend.h"
|
||
|
#include <SITL/SITL.h>
|
||
|
|
||
|
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
||
|
|
||
|
class AP_ESC_Telem_SITL : public AP_ESC_Telem_Backend {
|
||
|
public:
|
||
|
AP_ESC_Telem_SITL();
|
||
|
|
||
|
void update();
|
||
|
|
||
|
protected:
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
#endif
|