Index: firmware/App/Controllers/BloodFlow.c =================================================================== diff -u -r1efa1af5337b36f5022df5ce8cb7459352f13a8b -rc20c77ef196a760a7642d2426e509995e4a98e01 --- firmware/App/Controllers/BloodFlow.c (.../BloodFlow.c) (revision 1efa1af5337b36f5022df5ce8cb7459352f13a8b) +++ firmware/App/Controllers/BloodFlow.c (.../BloodFlow.c) (revision c20c77ef196a760a7642d2426e509995e4a98e01) @@ -7,8 +7,8 @@ * * @file BloodFlow.c * -* @author (last) Dara Navaei -* @date (last) 15-Jun-2022 +* @author (last) Sean Nash +* @date (last) 15-Jul-2022 * * @author (original) Sean Nash * @date (original) 07-Nov-2019 Index: firmware/App/Controllers/BloodLeak.c =================================================================== diff -u -r1519b5d150fd913f596715f0eacce7d5c5e0d56c -rc20c77ef196a760a7642d2426e509995e4a98e01 --- firmware/App/Controllers/BloodLeak.c (.../BloodLeak.c) (revision 1519b5d150fd913f596715f0eacce7d5c5e0d56c) +++ firmware/App/Controllers/BloodLeak.c (.../BloodLeak.c) (revision c20c77ef196a760a7642d2426e509995e4a98e01) @@ -8,7 +8,7 @@ * @file BloodLeak.c * * @author (last) Dara Navaei -* @date (last) 23-May-2022 +* @date (last) 04-Aug-2022 * * @author (original) Peman Montazemi * @date (original) 18-Mar-2021 @@ -649,6 +649,7 @@ // Check if the zero command has been requested state = ( TRUE == hasZeroBloodLeakBeenRequested() ? BLOOD_LEAK_PREP_FOR_ZERO_CMD_STATE : state ); + return state; } @@ -740,8 +741,8 @@ * @brief * The handleBloodLeakPrepForSelfTestCmdState function handles the blood leak * prepare for self test command state. - * @details Inputs: bloodLeakCmd - * @details Outputs: bloodLeakCmd + * @details Inputs: bloodLeakGPIOCmd + * @details Outputs: bloodLeakGPIOCmd * @return next state *************************************************************************/ static BLOOD_LEAK_STATE_T handleBloodLeakPrepForSelfTestCmdState( void ) @@ -875,14 +876,16 @@ } } - // Check whether zeroing the sensor has been requested or not if yes, transition to zero command state otherwise, stay in this state - state = ( TRUE == hasZeroBloodLeakBeenRequested() ? BLOOD_LEAK_PREP_FOR_ZERO_CMD_STATE : state ); - if ( TRUE == bloodLeakExitNormalRequested ) { state = BLOOD_LEAK_INIT_STATE; bloodLeakExitNormalRequested = FALSE; } + else if ( TRUE == hasZeroBloodLeakBeenRequested() ) + { + // Check whether zeroing the sensor has been requested or not if yes, transition to zero command state otherwise, stay in this state + state = BLOOD_LEAK_PREP_FOR_ZERO_CMD_STATE; + } return state; } @@ -973,56 +976,56 @@ switch( bloodLeakEmbModeRqstedCmd ) { - case NU_EMB_MODE_CMD: - // Null command do nothing - break; + case NU_EMB_MODE_CMD: + // Null command do nothing + break; - case CS_EMB_MODE_CMD: - case T_EMB_MODE_CMD: - case G_EMB_MODE_CMD: - case I_EMB_MODE_CMD: - case V_EMB_MODE_CMD: - case Z_EMB_MODE_CMD: - case Q_EMB_MODE_CMD: - case D_EMB_MODE_CMD: - case C_EMB_MODE_CMD: - // First clear the buffer from the older data - memset( bloodLeakEmbModeCmdSquence, 0x0, 2 * BLOOD_LEAK_EMB_MODE_CMD_SEQ_LENGTH ); - // Set the command sequence - bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_RESET_INDEX ][ BLOOD_LEAK_EMB_MODE_CMD_COL_INDEX ] = BLOOD_LEAK_EMB_MODE_COMM_RESET; - bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_RESET_INDEX ][ BLOOD_LEAK_EMB_MODE_IS_UART_COL_INDEX ] = TRUE; - bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_RESET_INDEX + 1 ][ BLOOD_LEAK_EMB_MODE_CMD_COL_INDEX ] = BLOOD_LEAK_EMB_MODE_COMM_ACTIVE_LOW; - bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_RESET_INDEX + 1 ][ BLOOD_LEAK_EMB_MODE_IS_UART_COL_INDEX ] = TRUE; - bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_CMD_INDEX ][ BLOOD_LEAK_EMB_MODE_CMD_COL_INDEX ] = command; - bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_CMD_INDEX ][ BLOOD_LEAK_EMB_MODE_IS_UART_COL_INDEX ] = FALSE; - bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_STOP_WRITE_INDEX ][ BLOOD_LEAK_EMB_MODE_CMD_COL_INDEX ] = BLOOD_LEAK_STOP_WRITE_FIFO_COMMAND; - bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_STOP_WRITE_INDEX ][ BLOOD_LEAK_EMB_MODE_IS_UART_COL_INDEX ] = FALSE; - bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_ACTIVE_HIGH_INDEX ][ BLOOD_LEAK_EMB_MODE_CMD_COL_INDEX ] = BLOOD_LEAK_EMB_MODE_COMM_ACTIVE_HIGH; - bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_ACTIVE_HIGH_INDEX ][ BLOOD_LEAK_EMB_MODE_IS_UART_COL_INDEX ] = TRUE; - bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_ACTIVE_HIGH_INDEX + 1 ][ BLOOD_LEAK_EMB_MODE_CMD_COL_INDEX ] = BLOOD_LEAK_EMB_MODE_COMM_ACTIVE_LOW; - bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_ACTIVE_HIGH_INDEX + 1 ][ BLOOD_LEAK_EMB_MODE_IS_UART_COL_INDEX ] = TRUE; + case CS_EMB_MODE_CMD: + case T_EMB_MODE_CMD: + case G_EMB_MODE_CMD: + case I_EMB_MODE_CMD: + case V_EMB_MODE_CMD: + case Z_EMB_MODE_CMD: + case Q_EMB_MODE_CMD: + case D_EMB_MODE_CMD: + case C_EMB_MODE_CMD: + // First clear the buffer from the older data + memset( bloodLeakEmbModeCmdSquence, 0x0, 2 * BLOOD_LEAK_EMB_MODE_CMD_SEQ_LENGTH ); + // Set the command sequence + bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_RESET_INDEX ][ BLOOD_LEAK_EMB_MODE_CMD_COL_INDEX ] = BLOOD_LEAK_EMB_MODE_COMM_RESET; + bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_RESET_INDEX ][ BLOOD_LEAK_EMB_MODE_IS_UART_COL_INDEX ] = TRUE; + bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_RESET_INDEX + 1 ][ BLOOD_LEAK_EMB_MODE_CMD_COL_INDEX ] = BLOOD_LEAK_EMB_MODE_COMM_ACTIVE_LOW; + bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_RESET_INDEX + 1 ][ BLOOD_LEAK_EMB_MODE_IS_UART_COL_INDEX ] = TRUE; + bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_CMD_INDEX ][ BLOOD_LEAK_EMB_MODE_CMD_COL_INDEX ] = command; + bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_CMD_INDEX ][ BLOOD_LEAK_EMB_MODE_IS_UART_COL_INDEX ] = FALSE; + bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_STOP_WRITE_INDEX ][ BLOOD_LEAK_EMB_MODE_CMD_COL_INDEX ] = BLOOD_LEAK_STOP_WRITE_FIFO_COMMAND; + bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_STOP_WRITE_INDEX ][ BLOOD_LEAK_EMB_MODE_IS_UART_COL_INDEX ] = FALSE; + bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_ACTIVE_HIGH_INDEX ][ BLOOD_LEAK_EMB_MODE_CMD_COL_INDEX ] = BLOOD_LEAK_EMB_MODE_COMM_ACTIVE_HIGH; + bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_ACTIVE_HIGH_INDEX ][ BLOOD_LEAK_EMB_MODE_IS_UART_COL_INDEX ] = TRUE; + bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_ACTIVE_HIGH_INDEX + 1 ][ BLOOD_LEAK_EMB_MODE_CMD_COL_INDEX ] = BLOOD_LEAK_EMB_MODE_COMM_ACTIVE_LOW; + bloodLeakEmbModeCmdSquence[ BLOOD_LEAK_EMB_MODE_ACTIVE_HIGH_INDEX + 1 ][ BLOOD_LEAK_EMB_MODE_IS_UART_COL_INDEX ] = TRUE; - // Set the variables for the next state - bloodLeakUARTCmdIndex = 0; - bloodLeakEmbModeRespIndex = 0; - bloodLeakEmbModeCmdSeqLength = BLOOD_LEAK_EMB_MODE_CMD_SEQ_LENGTH; - bloodLeakEmbModeOpsStartTime = getMSTimerCount(); - state = BLOOD_LEAK_CAL_SEND_COMMAND_STATE; - // Clear the response buffer to able to receive fresh data - memset( bloodLeakEmbModeRespBuffer, 0x0, BLOOD_LEAK_EMB_MODE_RESP_BUFFER_LEN ); - break; - - case SP_EMB_MODE_CMD: - prepareSetPointSeq( bloodLeakEmbModeSetPoint ); - bloodLeakEmbModeRespIndex = 0; - bloodLeakEmbModeOpsStartTime = getMSTimerCount(); - state = BLOOD_LEAK_CAL_SEND_COMMAND_STATE; - // Clear the command sequence buffer in case it is needed to send byte read request. The byte - // read requests are sent using this buffer while the set point is set using the set point buffer - memset( bloodLeakEmbModeCmdSquence, 0x0, 2 * BLOOD_LEAK_EMB_MODE_CMD_SEQ_LENGTH ); - // Clear the response buffer to able to receive fresh data - memset( bloodLeakEmbModeRespBuffer, 0x0, BLOOD_LEAK_EMB_MODE_RESP_BUFFER_LEN ); + // Set the variables for the next state + bloodLeakUARTCmdIndex = 0; + bloodLeakEmbModeRespIndex = 0; + bloodLeakEmbModeCmdSeqLength = BLOOD_LEAK_EMB_MODE_CMD_SEQ_LENGTH; + bloodLeakEmbModeOpsStartTime = getMSTimerCount(); + state = BLOOD_LEAK_CAL_SEND_COMMAND_STATE; + // Clear the response buffer to able to receive fresh data + memset( bloodLeakEmbModeRespBuffer, 0x0, BLOOD_LEAK_EMB_MODE_RESP_BUFFER_LEN ); break; + + case SP_EMB_MODE_CMD: + prepareSetPointSeq( bloodLeakEmbModeSetPoint ); + bloodLeakEmbModeRespIndex = 0; + bloodLeakEmbModeOpsStartTime = getMSTimerCount(); + state = BLOOD_LEAK_CAL_SEND_COMMAND_STATE; + // Clear the command sequence buffer in case it is needed to send byte read request. The byte + // read requests are sent using this buffer while the set point is set using the set point buffer + memset( bloodLeakEmbModeCmdSquence, 0x0, 2 * BLOOD_LEAK_EMB_MODE_CMD_SEQ_LENGTH ); + // Clear the response buffer to able to receive fresh data + memset( bloodLeakEmbModeRespBuffer, 0x0, BLOOD_LEAK_EMB_MODE_RESP_BUFFER_LEN ); + break; } return state; Index: firmware/App/Controllers/DGInterface.c =================================================================== diff -u -r43e59e505bbea87c76822c51a3273eec3f4addaa -rc20c77ef196a760a7642d2426e509995e4a98e01 --- firmware/App/Controllers/DGInterface.c (.../DGInterface.c) (revision 43e59e505bbea87c76822c51a3273eec3f4addaa) +++ firmware/App/Controllers/DGInterface.c (.../DGInterface.c) (revision c20c77ef196a760a7642d2426e509995e4a98e01) @@ -8,7 +8,7 @@ * @file DGInterface.c * * @author (last) Dara Navaei -* @date (last) 13-Jul-2022 +* @date (last) 15-Jul-2022 * * @author (original) Sean * @date (original) 08-Apr-2020 Index: firmware/App/Controllers/Fans.c =================================================================== diff -u -r921034ee7092206a50183eacfaa73b436d2dee5f -rc20c77ef196a760a7642d2426e509995e4a98e01 --- firmware/App/Controllers/Fans.c (.../Fans.c) (revision 921034ee7092206a50183eacfaa73b436d2dee5f) +++ firmware/App/Controllers/Fans.c (.../Fans.c) (revision c20c77ef196a760a7642d2426e509995e4a98e01) @@ -8,7 +8,7 @@ * @file Fans.c * * @author (last) Dara Navaei -* @date (last) 24-May-2022 +* @date (last) 03-Aug-2022 * * @author (original) Dara Navaei * @date (original) 04-Aug-2021 @@ -504,13 +504,6 @@ broadcastData( MSG_ID_HD_FANS_DATA, COMM_BUFFER_OUT_CAN_HD_BROADCAST, (U08*)&data, sizeof( FANS_DATA_T ) ); fansPublishCounter = 0; - - // TODO remove this debug output - // Send a comma delimited debug message with drift data - F32 test = 12.2; - char tempCharBuffer[ 64 ]; - sprintf( tempCharBuffer, "Fan_Rpm, %3.2f,temp_sensor, %3.2f", 2500.0, 17.2 ); - broadcastData( MSG_ID_HD_DEBUG_EVENT, COMM_BUFFER_OUT_CAN_HD_BROADCAST, (U08*)tempCharBuffer, strlen( tempCharBuffer ) ); } } Index: firmware/App/Controllers/SyringePump.c =================================================================== diff -u -refb6fa9d4d14c9eb37985516746adf21563c3be5 -rc20c77ef196a760a7642d2426e509995e4a98e01 --- firmware/App/Controllers/SyringePump.c (.../SyringePump.c) (revision efb6fa9d4d14c9eb37985516746adf21563c3be5) +++ firmware/App/Controllers/SyringePump.c (.../SyringePump.c) (revision c20c77ef196a760a7642d2426e509995e4a98e01) @@ -8,7 +8,7 @@ * @file SyringePump.c * * @author (last) Dara Navaei -* @date (last) 13-Jul-2022 +* @date (last) 15-Jul-2022 * * @author (original) Sean Nash * @date (original) 04-Mar-2021 Index: firmware/App/Controllers/Valves.c =================================================================== diff -u -r1efa1af5337b36f5022df5ce8cb7459352f13a8b -rc20c77ef196a760a7642d2426e509995e4a98e01 --- firmware/App/Controllers/Valves.c (.../Valves.c) (revision 1efa1af5337b36f5022df5ce8cb7459352f13a8b) +++ firmware/App/Controllers/Valves.c (.../Valves.c) (revision c20c77ef196a760a7642d2426e509995e4a98e01) @@ -7,8 +7,8 @@ * * @file Valves.c * -* @author (last) Dara Navaei -* @date (last) 26-May-2022 +* @author (last) Sean Nash +* @date (last) 13-Jul-2022 * * @author (original) Dara Navaei * @date (original) 07-Aug-2020 Index: firmware/App/HDCommon.h =================================================================== diff -u -r74ffac3f87a1a03c1a4282d6a6ac9db8c9b1a432 -rc20c77ef196a760a7642d2426e509995e4a98e01 --- firmware/App/HDCommon.h (.../HDCommon.h) (revision 74ffac3f87a1a03c1a4282d6a6ac9db8c9b1a432) +++ firmware/App/HDCommon.h (.../HDCommon.h) (revision c20c77ef196a760a7642d2426e509995e4a98e01) @@ -25,7 +25,7 @@ #define HD_VERSION_MAJOR 0 #define HD_VERSION_MINOR 6 #define HD_VERSION_MICRO 0 -#define HD_VERSION_BUILD 46 +#define HD_VERSION_BUILD 47 // ********** development build switches ********** Index: firmware/App/Modes/Dialysis.c =================================================================== diff -u -r254faac62b851c393c5df753eade2dc880b83247 -rc20c77ef196a760a7642d2426e509995e4a98e01 --- firmware/App/Modes/Dialysis.c (.../Dialysis.c) (revision 254faac62b851c393c5df753eade2dc880b83247) +++ firmware/App/Modes/Dialysis.c (.../Dialysis.c) (revision c20c77ef196a760a7642d2426e509995e4a98e01) @@ -8,7 +8,7 @@ * @file Dialysis.c * * @author (last) Dara Navaei -* @date (last) 13-Jul-2022 +* @date (last) 15-Jul-2022 * * @author (original) Sean * @date (original) 15-Jan-2020 Index: firmware/App/Modes/ModeInitPOST.c =================================================================== diff -u -r4ec54dc76acf9a434fb860c51739a7dd6f72afd6 -rc20c77ef196a760a7642d2426e509995e4a98e01 --- firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision 4ec54dc76acf9a434fb860c51739a7dd6f72afd6) +++ firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision c20c77ef196a760a7642d2426e509995e4a98e01) @@ -8,7 +8,7 @@ * @file ModeInitPOST.c * * @author (last) Dara Navaei -* @date (last) 13-Jul-2022 +* @date (last) 15-Jul-2022 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 Index: firmware/App/Modes/ModeStandby.c =================================================================== diff -u -rd6255708e8305bf5509485a860eb3469a42ec9ad -rc20c77ef196a760a7642d2426e509995e4a98e01 --- firmware/App/Modes/ModeStandby.c (.../ModeStandby.c) (revision d6255708e8305bf5509485a860eb3469a42ec9ad) +++ firmware/App/Modes/ModeStandby.c (.../ModeStandby.c) (revision c20c77ef196a760a7642d2426e509995e4a98e01) @@ -8,7 +8,7 @@ * @file ModeStandby.c * * @author (last) Dara Navaei -* @date (last) 13-Jul-2022 +* @date (last) 15-Jul-2022 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 Index: firmware/App/Modes/OperationModes.c =================================================================== diff -u -raceb6e5388e905d119c5c379bc97ced0720aa270 -rc20c77ef196a760a7642d2426e509995e4a98e01 --- firmware/App/Modes/OperationModes.c (.../OperationModes.c) (revision aceb6e5388e905d119c5c379bc97ced0720aa270) +++ firmware/App/Modes/OperationModes.c (.../OperationModes.c) (revision c20c77ef196a760a7642d2426e509995e4a98e01) @@ -8,7 +8,7 @@ * @file OperationModes.c * * @author (last) Dara Navaei -* @date (last) 03-May-2022 +* @date (last) 03-Aug-2022 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 Index: firmware/App/Modes/Prime.c =================================================================== diff -u -raceb6e5388e905d119c5c379bc97ced0720aa270 -rc20c77ef196a760a7642d2426e509995e4a98e01 --- firmware/App/Modes/Prime.c (.../Prime.c) (revision aceb6e5388e905d119c5c379bc97ced0720aa270) +++ firmware/App/Modes/Prime.c (.../Prime.c) (revision c20c77ef196a760a7642d2426e509995e4a98e01) @@ -7,8 +7,8 @@ * * @file Prime.c * -* @author (last) Michael Garthwaite -* @date (last) 21-Apr-2022 +* @author (last) Sean Nash +* @date (last) 13-Jul-2022 * * @author (original) Quang Nguyen * @date (original) 08-Dec-2020 Index: firmware/App/Modes/Rinseback.c =================================================================== diff -u -rd4a4438fece666d728dc9825157af6ca99be8eb9 -rc20c77ef196a760a7642d2426e509995e4a98e01 --- firmware/App/Modes/Rinseback.c (.../Rinseback.c) (revision d4a4438fece666d728dc9825157af6ca99be8eb9) +++ firmware/App/Modes/Rinseback.c (.../Rinseback.c) (revision c20c77ef196a760a7642d2426e509995e4a98e01) @@ -8,7 +8,7 @@ * @file Rinseback.c * * @author (last) Dara Navaei -* @date (last) 13-Jul-2022 +* @date (last) 15-Jul-2022 * * @author (original) Sean Nash * @date (original) 20-Jan-2021 Index: firmware/App/Modes/SelfTests.c =================================================================== diff -u -r49a4a92ec05c597a88704d8177c30ff0f026602b -rc20c77ef196a760a7642d2426e509995e4a98e01 --- firmware/App/Modes/SelfTests.c (.../SelfTests.c) (revision 49a4a92ec05c597a88704d8177c30ff0f026602b) +++ firmware/App/Modes/SelfTests.c (.../SelfTests.c) (revision c20c77ef196a760a7642d2426e509995e4a98e01) @@ -7,8 +7,8 @@ * * @file SelfTests.c * -* @author (last) Dara Navaei -* @date (last) 23-May-2022 +* @author (last) Sean Nash +* @date (last) 13-Jul-2022 * * @author (original) Quang Nguyen * @date (original) 28-Jan-2021 Index: firmware/App/Modes/TreatmentStop.c =================================================================== diff -u -r254faac62b851c393c5df753eade2dc880b83247 -rc20c77ef196a760a7642d2426e509995e4a98e01 --- firmware/App/Modes/TreatmentStop.c (.../TreatmentStop.c) (revision 254faac62b851c393c5df753eade2dc880b83247) +++ firmware/App/Modes/TreatmentStop.c (.../TreatmentStop.c) (revision c20c77ef196a760a7642d2426e509995e4a98e01) @@ -7,8 +7,8 @@ * * @file TreatmentStop.c * -* @author (last) Dara Navaei -* @date (last) 23-May-2022 +* @author (last) Sean Nash +* @date (last) 13-Jul-2022 * * @author (original) Sean * @date (original) 15-Jan-2020 Index: firmware/App/Services/SystemComm.c =================================================================== diff -u -r1b738450008f53cdacc28226a503593bb54ba901 -rc20c77ef196a760a7642d2426e509995e4a98e01 --- firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 1b738450008f53cdacc28226a503593bb54ba901) +++ firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision c20c77ef196a760a7642d2426e509995e4a98e01) @@ -8,7 +8,7 @@ * @file SystemComm.c * * @author (last) Dara Navaei -* @date (last) 14-Jun-2022 +* @date (last) 03-Aug-2022 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 @@ -1150,7 +1150,6 @@ handleTesterLogInRequest( message ); break; - // The default cannot be reached in VectorCAST since the cases are run in a for loop default: // Un-recognized or un-handled message ID received - ignore break; Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r1b738450008f53cdacc28226a503593bb54ba901 -rc20c77ef196a760a7642d2426e509995e4a98e01 --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 1b738450008f53cdacc28226a503593bb54ba901) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision c20c77ef196a760a7642d2426e509995e4a98e01) @@ -8,7 +8,7 @@ * @file SystemCommMessages.c * * @author (last) Dara Navaei -* @date (last) 14-Jun-2022 +* @date (last) 03-Aug-2022 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 Index: firmware/App/Services/SystemCommMessages.h =================================================================== diff -u -r1b738450008f53cdacc28226a503593bb54ba901 -rc20c77ef196a760a7642d2426e509995e4a98e01 --- firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision 1b738450008f53cdacc28226a503593bb54ba901) +++ firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision c20c77ef196a760a7642d2426e509995e4a98e01) @@ -8,7 +8,7 @@ * @file SystemCommMessages.h * * @author (last) Dara Navaei -* @date (last) 13-Jul-2022 +* @date (last) 03-Aug-2022 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019