Index: firmware/App/Services/FpgaRO.c =================================================================== diff -u -r3241c6b7f66889b6443e377ab1f5ecf2cedd2602 -r9cd04a743ae61a6b3d2e91d46062905db6cddd4a --- firmware/App/Services/FpgaRO.c (.../FpgaRO.c) (revision 3241c6b7f66889b6443e377ab1f5ecf2cedd2602) +++ firmware/App/Services/FpgaRO.c (.../FpgaRO.c) (revision 9cd04a743ae61a6b3d2e91d46062905db6cddd4a) @@ -45,6 +45,7 @@ #define FPGA_CONDUCTIVITY_INIT_ENABLE_BIT 0x02 ///< Conductivity Sensor initialization enable bit mask. #define FPGA_CONDUCTIVITY_WR_ENABLE_BIT 0x04 ///< Conductivity Sensor write enable bit mask. #define FPGA_CONDUCTIVITY_RD_ENABLE_BIT 0x08 ///< Conductivity Sensor read enable bit mask. +#define FPGA_FLOW_SENSOR_FLOW_CONTROL_BIT 0x01 ///< Flow Sensor flow control enable bit. // FPGA Sensors Record #pragma pack(push,1) @@ -197,6 +198,8 @@ // initialize FPGA clock speed error time windowed count initTimeWindowedCount( TIME_WINDOWED_COUNT_FPGA_COMM_FAILURES, MAX_FPGA_COMM_FAILURES, MAX_FPGA_COMM_FAILURES_WINDOW_MS); + + fpgaActuatorSetPoints.flowControl = FPGA_FLOW_SENSOR_FLOW_CONTROL_BIT; } /*********************************************************************//**