/*===================================================================== PIXHAWK Micro Air Vehicle Flying Robotics Toolkit (c) 2009, 2010 PIXHAWK PROJECT This file is part of the PIXHAWK project PIXHAWK is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. PIXHAWK is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with PIXHAWK. If not, see . ======================================================================*/ /** * @file * @brief Definition of the waypoint protocol handler * * @author Petri Tanskanen * */ #ifndef UASWAYPOINTMANAGER_H #define UASWAYPOINTMANAGER_H #include #include #include #include "Waypoint.h" #include class UAS; /** * @brief Implementation of the MAVLINK waypoint protocol * * This class handles the communication with a waypoint manager on the MAV. * All waypoints are stored in the QVector waypoints, modifications can be done with the WaypointList widget. * Notice that currently the access to the internal waypoint storage is not guarded nor thread-safe. This works as long as no other widget alters the data. * * See http://qgroundcontrol.org/waypoint_protocol for more information about the protocol and the states. */ class UASWaypointManager : public QObject { Q_OBJECT private: enum WaypointState { WP_IDLE = 0, ///< Waiting for commands WP_SENDLIST, ///< Initial state for sending waypoints to the MAV WP_SENDLIST_SENDWPS,///< Sending waypoints WP_GETLIST, ///< Initial state for retrieving wayppoints from the MAV WP_GETLIST_GETWPS, ///< Receiving waypoints WP_CLEARLIST, ///< Clearing waypoint list on the MAV WP_SETCURRENT ///< Setting new current waypoint on the MAV }; ///< The possible states for the waypoint protocol public: UASWaypointManager(UAS&); ///< Standard constructor. /** @name Protocol handlers */ /*@{*/ void handleWaypointCount(quint8 systemId, quint8 compId, quint16 count); ///< Handles received waypoint count messages void handleWaypoint(quint8 systemId, quint8 compId, mavlink_waypoint_t *wp); ///< Handles received waypoint messages void handleWaypointAck(quint8 systemId, quint8 compId, mavlink_waypoint_ack_t *wpa); ///< Handles received waypoint ack messages void handleWaypointRequest(quint8 systemId, quint8 compId, mavlink_waypoint_request_t *wpr); ///< Handles received waypoint request messages void handleWaypointReached(quint8 systemId, quint8 compId, mavlink_waypoint_reached_t *wpr); ///< Handles received waypoint reached messages void handleWaypointCurrent(quint8 systemId, quint8 compId, mavlink_waypoint_current_t *wpc); ///< Handles received set current waypoint messages /*@}*/ QVector &getWaypointList(void) { return waypoints; } ///< Returns a reference to the local waypoint list. Gives full access to the internal data structure - Subject to change: Public const access and friend access for the waypoint list widget. private: void sendWaypointClearAll(); void sendWaypointSetCurrent(quint16 seq); void sendWaypointCount(); void sendWaypointRequestList(); void sendWaypointRequest(quint16 seq); ///< Requests a waypoint with sequence number seq void sendWaypoint(quint16 seq); ///< Sends a waypoint with sequence number seq void sendWaypointAck(quint8 type); ///< Sends a waypoint ack public slots: void timeout(); ///< Called by the timer if a response times out. Handles send retries. void setCurrent(quint16 seq); ///< Sends the sequence number of the waypoint that should get the new target waypoint void clearWaypointList(); ///< Sends the waypoint clear all message to the MAV void readWaypoints(); ///< Requests the MAV's current waypoint list void writeWaypoints(); ///< Sends the local waypoint list to the MAV signals: void waypointUpdated(quint16,double,double,double,double,bool,bool,double,int); ///< Adds a waypoint to the waypoint list widget void currentWaypointChanged(quint16); ///< emits the new current waypoint sequence number void updateStatusString(const QString &); ///< emits the current status string private: UAS &uas; ///< Reference to the corresponding UAS quint32 current_retries; ///< The current number of retries left quint16 current_wp_id; ///< The last used waypoint ID in the current protocol transaction quint16 current_count; ///< The number of waypoints in the current protocol transaction WaypointState current_state; ///< The current protocol state quint8 current_partner_systemid; ///< The current protocol communication target system quint8 current_partner_compid; ///< The current protocol communication target component QVector waypoints; ///< local waypoint list QVector waypoint_buffer; ///< communication buffer for waypoints QTimer protocol_timer; ///< Timer to catch timeouts }; #endif // UASWAYPOINTMANAGER_H