Index: firmware/App/Controllers/Heaters.c =================================================================== diff -u -r35c07199fda6ba28c7ee417105a16ea3d14a2ad6 -r48ea28a08999dcf46985b20ea635fa504f569e57 --- firmware/App/Controllers/Heaters.c (.../Heaters.c) (revision 35c07199fda6ba28c7ee417105a16ea3d14a2ad6) +++ firmware/App/Controllers/Heaters.c (.../Heaters.c) (revision 48ea28a08999dcf46985b20ea635fa504f569e57) @@ -372,7 +372,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 );