Index: firmware/App/Drivers/GLXferPump.c =================================================================== diff -u -r1e806f55dd70e314a8bbb70c5233443dc807998a -r74fb4e00de266776cfc5d92163592ee895c23ed0 --- firmware/App/Drivers/GLXferPump.c (.../GLXferPump.c) (revision 1e806f55dd70e314a8bbb70c5233443dc807998a) +++ firmware/App/Drivers/GLXferPump.c (.../GLXferPump.c) (revision 74fb4e00de266776cfc5d92163592ee895c23ed0) @@ -110,6 +110,21 @@ /*********************************************************************//** * @brief +* The getAirPumpMotorFPGARPM function reads the air pump RPM from FPGA. +* minimum RPM that reports is 400 rpm and anything slower considered 0 (0xFFFF) +* @details \b Inputs: none +* @details \b Outputs: none +* @return air pump motor FPGA_RPM value. +*************************************************************************/ +U16 getAirPumpMotorFPGARPM( void ) +{ + U16 fpgaRPM = getH12AirPumpMotorRPM(); + + return fpgaRPM; +} + +/*********************************************************************//** +* @brief * The getAirPumpMotorRPM function reads the air pump RPM from FPGA. * minimum RPM that reports is 400 rpm and anything slower considered 0 (0xFFFF) * to convert the real RPM, use the formula rpm = (60.0 / ( getH12AirPumpMotorRPM() * 10 * 1E-6 )