Index: firmware/App/Services/SystemComm.c =================================================================== diff -u -rad354b6e4b39bfbd012be2d2f98ce5720671f78f -rcd5be724d5a3ba7457e761191d82f278654d7f5c --- firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision ad354b6e4b39bfbd012be2d2f98ce5720671f78f) +++ firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision cd5be724d5a3ba7457e761191d82f278654d7f5c) @@ -1,14 +1,14 @@ /************************************************************************** * -* Copyright (c) 2019-2023 Diality Inc. - All Rights Reserved. +* Copyright (c) 2019-2024 Diality Inc. - All Rights Reserved. * * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * @file SystemComm.c * -* @author (last) Michael Garthwaite -* @date (last) 18-Aug-2023 +* @author (last) Sean Nash +* @date (last) 10-Oct-2023 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 @@ -1220,7 +1220,7 @@ } // Handle any test messages if tester has logged in successfully - if ( ( msgID > MSG_ID_FIRST_TESTER_MESSAGE ) && ( msgID <= END_OF_MSG_IDS ) && ( TRUE == isTestingActivated() ) ) + if ( ( msgID > MSG_ID_FIRST_TESTER_MESSAGE ) && ( TRUE == isTestingActivated() ) ) { switch ( msgID ) { @@ -1812,6 +1812,10 @@ handleTestHDPendingACKOverrideRequest( message ); break; + case MSG_ID_HD_RECIRULATION_PCT_OVERRIDE: + handleTestHDRecirulationPctOverrideRequest( message ); + break; + // The default cannot be reached in VectorCAST since the cases are run in a for loop default: // Unrecognized message ID received - ignore