Index: firmware/App/Tasks/TaskGeneral.c =================================================================== diff -u -rc9b434898a8bbe9143b243627ea081e5e0f7a861 -r0a4dcd288d4347b85baaa0b07da568b6add5eac7 --- firmware/App/Tasks/TaskGeneral.c (.../TaskGeneral.c) (revision c9b434898a8bbe9143b243627ea081e5e0f7a861) +++ 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,7 +83,9 @@ // Monitor temperatures execTemperatures(); -#endif +#endif + // Monitor processor RAM status + execRAMMonitor(); // Run operation mode state machine execOperationModes(); @@ -115,7 +116,7 @@ // Manage alarm state execAlarmMgmt(); #endif - + // Manage data to be transmitted to other sub-systems execSystemCommTx(); }