Index: firmware/App/Tasks/TaskGeneral.c =================================================================== diff -u -r22176ce95e49213c48454f34ddf5d29b8109f2cb -r7d4711edd7b40cd3e29f43e766f79a8a09586fe9 --- firmware/App/Tasks/TaskGeneral.c (.../TaskGeneral.c) (revision 22176ce95e49213c48454f34ddf5d29b8109f2cb) +++ firmware/App/Tasks/TaskGeneral.c (.../TaskGeneral.c) (revision 7d4711edd7b40cd3e29f43e766f79a8a09586fe9) @@ -1,14 +1,14 @@ /************************************************************************** * -* Copyright (c) 2019-2022 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 TaskGeneral.c * -* @author (last) Dara Navaei -* @date (last) 23-May-2022 +* @author (last) Dong Nguyen +* @date (last) 27-Sep-2022 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 @@ -23,6 +23,7 @@ #include "DrainPump.h" #include "Fans.h" #include "Heaters.h" +#include "Integrity.h" #include "NVDataMgmt.h" #include "OperationModes.h" #include "Reservoirs.h" @@ -87,10 +88,12 @@ // Monitor DG voltages execVoltagesMonitor(); +#endif // run operation mode state machine execOperationModes(); +#ifndef BOARD_WITH_NO_HARDWARE // Monitor thermistors state machine execThermistors(); @@ -114,11 +117,14 @@ // Manage switches monitor execSwitches(); -#endif // Heaters controller execHeaters(); + // Monitor RAM error status + execRAMMonitor(); +#endif + // Run non-volatile data management state machine that sends the data record // to Dialin execNVDataMgmtProcessRecord();