Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

LOS Telem handles communication between ZP and ground station. Note that this does not include RC link.

Telem provides functions for ZP to send and receive predefined structs to and from ground.

These functions make calls to relevant drivers e.g. Xbees, rfd900.

ZP just has to know what data is moving between it and ground and doesn’t need to concern itself with the details of how communication works.

ZP should periodically call the Telem functions to send/receive data.

Exposed functions:

        /**
         * @brief Retrieves latest data from ground, if any.
         *
         * @param ... Struct in which retrieved data is stored.
         *
         * @return true if data was retrieved, otherwise false
         */
        bool get_from_ground(Data_From_Ground_t &dataFromGround);

        /**
         * @brief Sends data to ground.
         *
         * @param dataToGround Data to send.
         */
        void send_to_ground(Data_To_Ground_t &dataToGround);

  • No labels

0 Comments

You are not logged in. Any changes you make will be marked as anonymous. You may want to Log In if you already have an account.