2017-03-01 07:17:45 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "AP_VisualOdom_Backend.h"
|
|
|
|
|
|
|
|
class AP_VisualOdom_MAV : public AP_VisualOdom_Backend
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
// constructor
|
|
|
|
AP_VisualOdom_MAV(AP_VisualOdom &frontend);
|
|
|
|
|
|
|
|
// consume VISION_POSITION_DELTA MAVLink message
|
2019-07-11 05:29:27 -03:00
|
|
|
void handle_msg(const mavlink_message_t &msg) override;
|
2017-03-01 07:17:45 -04:00
|
|
|
};
|