Index: firmware/App/Tasks/TaskGeneral.c =================================================================== diff -u -r0d60b097df179aeaa2df1f1ad5ec3b9099fc0006 -r0a4dcd288d4347b85baaa0b07da568b6add5eac7 --- firmware/App/Tasks/TaskGeneral.c (.../TaskGeneral.c) (revision 0d60b097df179aeaa2df1f1ad5ec3b9099fc0006) +++ firmware/App/Tasks/TaskGeneral.c (.../TaskGeneral.c) (revision 0a4dcd288d4347b85baaa0b07da568b6add5eac7) @@ -1,14 +1,14 @@ /************************************************************************** * -* Copyright (c) 2019-2022 Diality Inc. - All Rights Reserved. +* Copyright (c) 2019-2023 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 TaskGeneral.c * -* @author (last) Darren Cox -* @date (last) 10-Mar-2022 +* @author (last) Dara Navaei +* @date (last) 17-Oct-2022 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 @@ -23,6 +23,7 @@ #include "DialInFlow.h" #include "DialOutFlow.h" #include "Fans.h" +#include "Integrity.h" #include "NVDataMgmt.h" #include "OperationModes.h" #include "PresOccl.h" @@ -65,9 +66,7 @@ execSystemCommRx(); // Prevent most processing until UI has started communicating -#ifndef SIMULATE_UI if ( TRUE == uiCommunicated() ) -#endif { #ifndef BOARD_WITH_NO_HARDWARE // Monitor DG @@ -84,12 +83,13 @@ // Monitor temperatures execTemperatures(); -#endif +#endif + // Monitor processor RAM status + execRAMMonitor(); // Run operation mode state machine execOperationModes(); - #ifndef BOARD_WITH_NO_HARDWARE // Manage RTC @@ -117,9 +117,6 @@ execAlarmMgmt(); #endif - // Monitor processor RAM status - //execRAMMonitor(); // DN-01SEPT2022 - // Manage data to be transmitted to other sub-systems execSystemCommTx(); }