Index: firmware/App/Controllers/Heaters.c =================================================================== diff -u -re0cdf49eb0f54239e5d765282e0952cea7ded1bd -r95eefee71702fbf031025dc35ebaf553dfb050b7 --- firmware/App/Controllers/Heaters.c (.../Heaters.c) (revision e0cdf49eb0f54239e5d765282e0952cea7ded1bd) +++ firmware/App/Controllers/Heaters.c (.../Heaters.c) (revision 95eefee71702fbf031025dc35ebaf553dfb050b7) @@ -367,7 +367,7 @@ { // TODO add the function that gets the flow of the new flow sensor for DG. For now it is assumed that trimmer heater flow sensor // is not 0 so the heater can run if needed - F32 measFlow = ( DG_PRIMARY_HEATER == heater ? getMeasuredROFlowRate() : 50.0 ); + F32 measFlow = ( DG_PRIMARY_HEATER == heater ? getMeasuredROFlowRateLPM() : 50.0 ); // TODO get the minimum new flow sensor flow sensor F32 minFlow = ( DG_PRIMARY_HEATER == heater ? MIN_RO_FLOWRATE_LPM : MIN_RO_FLOWRATE_LPM ); BOOL isFlowLow = ( measFlow < minFlow ? TRUE : FALSE );