Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r5bcaad82c0fdd66fda6db24a023d7128c4eb93ae -rb6f63e07d64382b76940e9be1c2e5e922904dc26 --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 5bcaad82c0fdd66fda6db24a023d7128c4eb93ae) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision b6f63e07d64382b76940e9be1c2e5e922904dc26) @@ -107,7 +107,7 @@ static BOOL sendTestAckResponseMsg( MSG_ID_T msgID, BOOL ack ); static BOOL sendAckResponseMsg( MSG_ID_T msgID, COMM_BUFFER_T buffer, BOOL ack ); static BOOL sendUIResponseMsg( MSG_ID_T msgID, BOOL accepted, U32 reason ); -static void sendInstitutionalRecordToUI( MESSAGE_T* message, HD_INSTITUTIONAL_LOCAL_RECORD_T* instit ); +static void sendInstitutionalRecordToUI( HD_INSTITUTIONAL_LOCAL_RECORD_T* instit ); /*********************************************************************//** * @brief @@ -3642,7 +3642,7 @@ memcpy( &hdInstitutionalLocalRecord, &hdInstitutionalRecord, sizeof( HD_INSTITUTIONAL_LOCAL_RECORD_T ) ); - sendInstitutionalRecordToUI( message, &hdInstitutionalLocalRecord ); + sendInstitutionalRecordToUI( &hdInstitutionalLocalRecord ); } } @@ -3651,10 +3651,11 @@ * The sendInstitutionalRecordToUI function sends the institutional record to UI * @details Inputs: none * @details Outputs: none - * @param message a pointer to the message to handle + * @param instit a pointer to the local institutional recored in the system + * messages that is without calibration time and crc * @return none *************************************************************************/ -static void sendInstitutionalRecordToUI( MESSAGE_T* message, HD_INSTITUTIONAL_LOCAL_RECORD_T* instit ) +static void sendInstitutionalRecordToUI( HD_INSTITUTIONAL_LOCAL_RECORD_T* instit ) { MESSAGE_T msg;