Skip to content
Snippets Groups Projects
UAS.h 38.7 KiB
Newer Older
  • Learn to ignore specific revisions
  •     /** @brief Read settings from disk */
        void readSettings();
    
        /** @brief Send a message over this link (to this or to all UAS on this link) */
        void _sendMessageLink(LinkInterface* link, mavlink_message_t message);
        /** @brief Send a message over all links this UAS can be reached with (!= all links) */
        void _sendMessage(mavlink_message_t message);
    
    private slots:
        void _linkDisconnected(LinkInterface* link);
        
    
    private:
        bool _containsLink(LinkInterface* link);