Skip to content
ArduPilotMAV.h 350 B
Newer Older
#ifndef ARDUPILOTMAV_H
#define ARDUPILOTMAV_H

#include "UAS.h"

class ArduPilotMAV : public UAS
{
public:
    ArduPilotMAV(MAVLinkProtocol* mavlink, int id = 0);
public slots:
    /** @brief Receive a MAVLink message from this MAV */
    void receiveMessage(LinkInterface* link, mavlink_message_t message);
};

#endif // ARDUPILOTMAV_H