ArduPilotMAV.h 350 Bytes
Newer Older
1 2 3 4 5 6 7
#ifndef ARDUPILOTMAV_H
#define ARDUPILOTMAV_H

#include "UAS.h"

class ArduPilotMAV : public UAS
{
8
    Q_OBJECT
9 10
public:
    ArduPilotMAV(MAVLinkProtocol* mavlink, int id = 0);
11 12 13
public slots:
    /** @brief Receive a MAVLink message from this MAV */
    void receiveMessage(LinkInterface* link, mavlink_message_t message);
14 15 16
};

#endif // ARDUPILOTMAV_H