Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r164ae54cb5fe0d2ea90307c2570a84d5b39d0aec -r5990682f801986ab67bf7383dab54fdcfaf35b0c --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 164ae54cb5fe0d2ea90307c2570a84d5b39d0aec) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 5990682f801986ab67bf7383dab54fdcfaf35b0c) @@ -8,7 +8,7 @@ * @file SystemCommMessages.c * * @author (last) Dara Navaei -* @date (last) 26-Apr-2024 +* @date (last) 10-May-2024 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 @@ -3702,20 +3702,16 @@ *************************************************************************/ void handleUIHDResetInServiceModeRequest( MESSAGE_T* message ) { - BOOL result = FALSE; - // Verify payload length if ( ( 0 == message->hdr.payloadLen ) && ( MODE_SERV == getCurrentOperationMode() ) ) { - // S/w reset of processor - result = TRUE; // Reset will prevent this from getting transmitted though #ifndef _VECTORCAST_ systemREG1->SYSECR = (0x2) << 14; // Reset processor #endif } // Respond to request - sendTestAckResponseMsg( (MSG_ID_T)message->hdr.msgID, result ); + sendAckResponseMsg( (MSG_ID_T)message->hdr.msgID, COMM_BUFFER_OUT_CAN_HD_2_UI, FALSE ); }