Code for autonomous rover for Sparkfun AVC. DataBus won 3rd in 2012 and the same code was used on Troubled Child, a 1986 Jeep Grand Wagoneer to win 1st in 2014.

Dependencies:   mbed Watchdog SDFileSystem DigoleSerialDisp

Committer:
shimniok
Date:
Mon May 27 13:26:03 2013 +0000
Revision:
0:a6a169de725f
Working version with priorities set and update time display

Who changed what in which revision?

UserRevisionLine numberNew contents of line
shimniok 0:a6a169de725f 1 // MESSAGE STATUSTEXT PACKING
shimniok 0:a6a169de725f 2
shimniok 0:a6a169de725f 3 #define MAVLINK_MSG_ID_STATUSTEXT 254
shimniok 0:a6a169de725f 4
shimniok 0:a6a169de725f 5 typedef struct __mavlink_statustext_t
shimniok 0:a6a169de725f 6 {
shimniok 0:a6a169de725f 7 uint8_t severity; ///< Severity of status, 0 = info message, 255 = critical fault
shimniok 0:a6a169de725f 8 int8_t text[50]; ///< Status text message, without null termination character
shimniok 0:a6a169de725f 9
shimniok 0:a6a169de725f 10 } mavlink_statustext_t;
shimniok 0:a6a169de725f 11
shimniok 0:a6a169de725f 12 #define MAVLINK_MSG_STATUSTEXT_FIELD_TEXT_LEN 50
shimniok 0:a6a169de725f 13
shimniok 0:a6a169de725f 14
shimniok 0:a6a169de725f 15 /**
shimniok 0:a6a169de725f 16 * @brief Pack a statustext message
shimniok 0:a6a169de725f 17 * @param system_id ID of this system
shimniok 0:a6a169de725f 18 * @param component_id ID of this component (e.g. 200 for IMU)
shimniok 0:a6a169de725f 19 * @param msg The MAVLink message to compress the data into
shimniok 0:a6a169de725f 20 *
shimniok 0:a6a169de725f 21 * @param severity Severity of status, 0 = info message, 255 = critical fault
shimniok 0:a6a169de725f 22 * @param text Status text message, without null termination character
shimniok 0:a6a169de725f 23 * @return length of the message in bytes (excluding serial stream start sign)
shimniok 0:a6a169de725f 24 */
shimniok 0:a6a169de725f 25 static inline uint16_t mavlink_msg_statustext_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, uint8_t severity, const int8_t* text)
shimniok 0:a6a169de725f 26 {
shimniok 0:a6a169de725f 27 uint16_t i = 0;
shimniok 0:a6a169de725f 28 msg->msgid = MAVLINK_MSG_ID_STATUSTEXT;
shimniok 0:a6a169de725f 29
shimniok 0:a6a169de725f 30 i += put_uint8_t_by_index(severity, i, msg->payload); // Severity of status, 0 = info message, 255 = critical fault
shimniok 0:a6a169de725f 31 i += put_array_by_index((const int8_t*)text, sizeof(int8_t)*50, i, msg->payload); // Status text message, without null termination character
shimniok 0:a6a169de725f 32
shimniok 0:a6a169de725f 33 return mavlink_finalize_message(msg, system_id, component_id, i);
shimniok 0:a6a169de725f 34 }
shimniok 0:a6a169de725f 35
shimniok 0:a6a169de725f 36 /**
shimniok 0:a6a169de725f 37 * @brief Pack a statustext message
shimniok 0:a6a169de725f 38 * @param system_id ID of this system
shimniok 0:a6a169de725f 39 * @param component_id ID of this component (e.g. 200 for IMU)
shimniok 0:a6a169de725f 40 * @param chan The MAVLink channel this message was sent over
shimniok 0:a6a169de725f 41 * @param msg The MAVLink message to compress the data into
shimniok 0:a6a169de725f 42 * @param severity Severity of status, 0 = info message, 255 = critical fault
shimniok 0:a6a169de725f 43 * @param text Status text message, without null termination character
shimniok 0:a6a169de725f 44 * @return length of the message in bytes (excluding serial stream start sign)
shimniok 0:a6a169de725f 45 */
shimniok 0:a6a169de725f 46 static inline uint16_t mavlink_msg_statustext_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, uint8_t severity, const int8_t* text)
shimniok 0:a6a169de725f 47 {
shimniok 0:a6a169de725f 48 uint16_t i = 0;
shimniok 0:a6a169de725f 49 msg->msgid = MAVLINK_MSG_ID_STATUSTEXT;
shimniok 0:a6a169de725f 50
shimniok 0:a6a169de725f 51 i += put_uint8_t_by_index(severity, i, msg->payload); // Severity of status, 0 = info message, 255 = critical fault
shimniok 0:a6a169de725f 52 i += put_array_by_index((const int8_t*)text, sizeof(int8_t)*50, i, msg->payload); // Status text message, without null termination character
shimniok 0:a6a169de725f 53
shimniok 0:a6a169de725f 54 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, i);
shimniok 0:a6a169de725f 55 }
shimniok 0:a6a169de725f 56
shimniok 0:a6a169de725f 57 /**
shimniok 0:a6a169de725f 58 * @brief Encode a statustext struct into a message
shimniok 0:a6a169de725f 59 *
shimniok 0:a6a169de725f 60 * @param system_id ID of this system
shimniok 0:a6a169de725f 61 * @param component_id ID of this component (e.g. 200 for IMU)
shimniok 0:a6a169de725f 62 * @param msg The MAVLink message to compress the data into
shimniok 0:a6a169de725f 63 * @param statustext C-struct to read the message contents from
shimniok 0:a6a169de725f 64 */
shimniok 0:a6a169de725f 65 static inline uint16_t mavlink_msg_statustext_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_statustext_t* statustext)
shimniok 0:a6a169de725f 66 {
shimniok 0:a6a169de725f 67 return mavlink_msg_statustext_pack(system_id, component_id, msg, statustext->severity, statustext->text);
shimniok 0:a6a169de725f 68 }
shimniok 0:a6a169de725f 69
shimniok 0:a6a169de725f 70 /**
shimniok 0:a6a169de725f 71 * @brief Send a statustext message
shimniok 0:a6a169de725f 72 * @param chan MAVLink channel to send the message
shimniok 0:a6a169de725f 73 *
shimniok 0:a6a169de725f 74 * @param severity Severity of status, 0 = info message, 255 = critical fault
shimniok 0:a6a169de725f 75 * @param text Status text message, without null termination character
shimniok 0:a6a169de725f 76 */
shimniok 0:a6a169de725f 77 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
shimniok 0:a6a169de725f 78
shimniok 0:a6a169de725f 79 static inline void mavlink_msg_statustext_send(mavlink_channel_t chan, uint8_t severity, const int8_t* text)
shimniok 0:a6a169de725f 80 {
shimniok 0:a6a169de725f 81 mavlink_message_t msg;
shimniok 0:a6a169de725f 82 mavlink_msg_statustext_pack_chan(mavlink_system.sysid, mavlink_system.compid, chan, &msg, severity, text);
shimniok 0:a6a169de725f 83 mavlink_send_uart(chan, &msg);
shimniok 0:a6a169de725f 84 }
shimniok 0:a6a169de725f 85
shimniok 0:a6a169de725f 86 #endif
shimniok 0:a6a169de725f 87 // MESSAGE STATUSTEXT UNPACKING
shimniok 0:a6a169de725f 88
shimniok 0:a6a169de725f 89 /**
shimniok 0:a6a169de725f 90 * @brief Get field severity from statustext message
shimniok 0:a6a169de725f 91 *
shimniok 0:a6a169de725f 92 * @return Severity of status, 0 = info message, 255 = critical fault
shimniok 0:a6a169de725f 93 */
shimniok 0:a6a169de725f 94 static inline uint8_t mavlink_msg_statustext_get_severity(const mavlink_message_t* msg)
shimniok 0:a6a169de725f 95 {
shimniok 0:a6a169de725f 96 return (uint8_t)(msg->payload)[0];
shimniok 0:a6a169de725f 97 }
shimniok 0:a6a169de725f 98
shimniok 0:a6a169de725f 99 /**
shimniok 0:a6a169de725f 100 * @brief Get field text from statustext message
shimniok 0:a6a169de725f 101 *
shimniok 0:a6a169de725f 102 * @return Status text message, without null termination character
shimniok 0:a6a169de725f 103 */
shimniok 0:a6a169de725f 104 static inline uint16_t mavlink_msg_statustext_get_text(const mavlink_message_t* msg, int8_t* r_data)
shimniok 0:a6a169de725f 105 {
shimniok 0:a6a169de725f 106
shimniok 0:a6a169de725f 107 memcpy(r_data, msg->payload+sizeof(uint8_t), sizeof(int8_t)*50);
shimniok 0:a6a169de725f 108 return sizeof(int8_t)*50;
shimniok 0:a6a169de725f 109 }
shimniok 0:a6a169de725f 110
shimniok 0:a6a169de725f 111 /**
shimniok 0:a6a169de725f 112 * @brief Decode a statustext message into a struct
shimniok 0:a6a169de725f 113 *
shimniok 0:a6a169de725f 114 * @param msg The message to decode
shimniok 0:a6a169de725f 115 * @param statustext C-struct to decode the message contents into
shimniok 0:a6a169de725f 116 */
shimniok 0:a6a169de725f 117 static inline void mavlink_msg_statustext_decode(const mavlink_message_t* msg, mavlink_statustext_t* statustext)
shimniok 0:a6a169de725f 118 {
shimniok 0:a6a169de725f 119 statustext->severity = mavlink_msg_statustext_get_severity(msg);
shimniok 0:a6a169de725f 120 mavlink_msg_statustext_get_text(msg, statustext->text);
shimniok 0:a6a169de725f 121 }