ardupilot/libraries/AP_Beacon/AP_Beacon_SITL.h

29 lines
486 B
C
Raw Normal View History

2016-11-23 07:34:48 -04:00
#pragma once
#include "AP_Beacon_Backend.h"
#if AP_BEACON_SITL_ENABLED
2016-11-23 07:34:48 -04:00
#include <SITL/SITL.h>
class AP_Beacon_SITL : public AP_Beacon_Backend
{
public:
// constructor
AP_Beacon_SITL(AP_Beacon &frontend);
// return true if sensor is basically healthy (we are receiving data)
bool healthy() override;
// update
void update() override;
private:
SITL::SIM *sitl;
2016-11-23 07:34:48 -04:00
uint8_t next_beacon;
uint32_t last_update_ms;
};
#endif // AP_BEACON_SITL_ENABLED