Index: firmware/App/Tasks/TaskPriority.c =================================================================== diff -u -re5ad74ca84ead6c613dfcca396388ae5f6b77442 -r3555f182983cb3852f1e414017d11aeb537d3274 --- firmware/App/Tasks/TaskPriority.c (.../TaskPriority.c) (revision e5ad74ca84ead6c613dfcca396388ae5f6b77442) +++ firmware/App/Tasks/TaskPriority.c (.../TaskPriority.c) (revision 3555f182983cb3852f1e414017d11aeb537d3274) @@ -1,14 +1,14 @@ /************************************************************************** * -* Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. +* Copyright (c) 2019-2021 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 TaskPriority.c * -* @author (last) Quang Nguyen -* @date (last) 25-Aug-2020 +* @author (last) H. Nguyen +* @date (last) 21-Oct-2021 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 @@ -27,6 +27,7 @@ #include "LoadCell.h" #include "Pressures.h" #include "ROPump.h" +#include "DialysateFlow.h" #include "TaskPriority.h" #include "TemperatureSensors.h" #include "Valves.h" @@ -98,6 +99,11 @@ execFluidLeak(); #endif + +#ifdef DIALYSATE_FLOW_METER_ENABLED + // Monitor dialysate flow meter + execDialysateFlowMeterMonitor(); +#endif // Second pass for FPGA execFPGAOut(); @@ -108,6 +114,7 @@ #ifdef TASK_TIMING_OUTPUT_ENABLED // SET_TASK_OFF(); // TODO - uncomment and define TASK_TIMING_OUTPUT_ENABLED to monitor this tasks timing #endif + } /**@}*/