Index: MessageSupport.h =================================================================== diff -u -r2801d97e877dd78189aa891e80a2f7cf60a6a2b7 -rfb1be94d30e7017deb9bb465ce676ee37f2d73f3 --- MessageSupport.h (.../MessageSupport.h) (revision 2801d97e877dd78189aa891e80a2f7cf60a6a2b7) +++ MessageSupport.h (.../MessageSupport.h) (revision fb1be94d30e7017deb9bb465ce676ee37f2d73f3) @@ -48,9 +48,9 @@ /// Record structure for a message (header + payload). typedef struct { - COMM_BUFFER_T in_buffer; ///< Message received into this channel buffer MESSAGE_HEADER_T hdr; ///< Message header U08 payload[ MAX_MSG_PAYLOAD_SIZE ]; ///< Message payload + COMM_BUFFER_T in_buffer; ///< Message received into this channel buffer } MESSAGE_T; /// Record structure for a wrapped message (message + CRC). @@ -65,5 +65,6 @@ // ********** public function prototypes ********** BOOL broadcastData( MSG_ID_T msgID, COMM_BUFFER_T buffer, U08* dataPtr, U32 length ); +BOOL sendMessage( MSG_ID_T msgID, COMM_BUFFER_T buffer, U08* dataPtr, U32 length ); #endif