Index: firmware/App/Services/SystemComm.c =================================================================== diff -u -r56b304f221d78b5b34e1431fba3544cf9e0b40a9 -r8e6488e189349e0f87f2fb21fa8176aced0b5a43 --- firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 56b304f221d78b5b34e1431fba3544cf9e0b40a9) +++ firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 8e6488e189349e0f87f2fb21fa8176aced0b5a43) @@ -297,7 +297,7 @@ * @details * Inputs : none * Outputs : message interrupt handled - * @param srcCANBox : which CAN message box triggered this interrupt + * @param srcCANBox which CAN message box triggered this interrupt * @return none *************************************************************************/ void handleCANMsgInterrupt( CAN_MESSAGE_BOX_T srcCANBox ) @@ -450,7 +450,7 @@ * @details * Inputs : CAN_OUT_BUFFERS[] * Outputs : none - * @param srcCANBox : which CAN message box to check + * @param srcCANBox which CAN message box to check * @return TRUE if the given CAN message box is configured for transmit, FALSE if not. *************************************************************************/ BOOL isCANBoxForXmit( CAN_MESSAGE_BOX_T srcCANBox ) @@ -477,7 +477,7 @@ * @details * Inputs : MSG_IN_BUFFERS[] * Outputs : none - * @param srcCANBox : which CAN message box to check + * @param srcCANBox which CAN message box to check * @return TRUE if the given CAN message box is configured for receiving, FALSE if not. *************************************************************************/ BOOL isCANBoxForRecv( CAN_MESSAGE_BOX_T srcCANBox ) @@ -730,7 +730,7 @@ * @details * Inputs : none * Outputs : Any padding at front of comm buffer is consumed. - * @param msg : buffer : the comm buffer to process + * @param buffer the comm buffer to process * @return none *************************************************************************/ static void consumeBufferPaddingBeforeSync( COMM_BUFFER_T buffer ) @@ -761,8 +761,8 @@ * @details * Inputs : none * Outputs : If a complete message can be found in buffer contents, it is parsed out. - * @param data : pointer to byte array to search for a message - * @param len : # of bytes in the data to search + * @param data pointer to byte array to search for a message + * @param len # of bytes in the data to search * @return size of message if found, zero if no complete message found, \n * -1 if message found but CRC fails. *************************************************************************/ @@ -906,9 +906,9 @@ * @details * Inputs : pendingAckList[] * Outputs : pendingAckList[] - * @param msg : pointer to msg within the message data - * @param msgData : pointer to message data to add to pending ACK list - * @param len : # of bytes of message data + * @param msg pointer to msg within the message data + * @param msgData pointer to message data to add to pending ACK list + * @param len # of bytes of message data * @return TRUE if message added successfully, FALSE if not *************************************************************************/ BOOL addMsgToPendingACKList( MESSAGE_T *msg, COMM_BUFFER_T channel, U08 *msgData, U32 len ) @@ -952,7 +952,7 @@ * @details * Inputs : pendingAckList[] * Outputs : pendingAckList[] - * @param seqNo : sequence # to match to an entry in the list + * @param seqNo sequence # to match to an entry in the list * @return TRUE if a match was found, FALSE if not *************************************************************************/ static BOOL matchACKtoPendingACKList( S16 seqNo ) @@ -1018,7 +1018,7 @@ * @details * Inputs : none * Outputs : message processed - * @param message : pointer to message to process + * @param message pointer to message to process * @return none *************************************************************************/ static void processReceivedMessage( MESSAGE_T *message )