Index: firmware/App/Services/FpgaDD.c =================================================================== diff -u -ra6737c3bcc8286c153b778c2c395f465e76aaafb -r60693bf21a8a0277eae54cbfcb6cfd68176b079a --- firmware/App/Services/FpgaDD.c (.../FpgaDD.c) (revision a6737c3bcc8286c153b778c2c395f465e76aaafb) +++ firmware/App/Services/FpgaDD.c (.../FpgaDD.c) (revision 60693bf21a8a0277eae54cbfcb6cfd68176b079a) @@ -251,7 +251,7 @@ U16 temperatureP13; ///< Reg 674. P13 temperature data. S16 pressureP17; ///< Reg 676. P17 pressure data. U16 temperatureP17; ///< Reg 678. P17 temperature data. - U16 p40PumpTachCount; ///< Reg 680. P40 pump tachometer counter. + U16 p40PumpRPMCounts; ///< Reg 680. P40 pump tachometer counter. U08 p25LevelSwitch; ///< Reg 682. P25 level switch. U08 reserved4; ///< Reg 683. Reserved. U32 conductivityP9Data; ///< Reg 684. P9 conductivity sensor data. @@ -371,7 +371,7 @@ U16 temperatureP13; ///< Reg 634. P13 temperature data. S16 pressureP17; ///< Reg 636. P17 pressure data. U16 temperatureP17; ///< Reg 638. P17 temperature data. - U16 p40PumpTachCount; ///< Reg 640. P40 pump tachometer counter. + U16 p40PumpRPMCounts; ///< Reg 640. P40 pump rpm counter. U08 p25LevelSwitch; ///< Reg 642. P25 level switch. U08 fpgaGPIOStatus; ///< Reg 643. GPIO Status U16 flowRateP7; ///< Reg 644. P7 flow sensor rate. @@ -3730,15 +3730,15 @@ /*********************************************************************//** * @brief - * The getFPGAP12PumpTachCount function gets the running 16-bit tachometer count + * The getFPGAP40PumpRPMCount function gets the running 16-bit rpm count * from the P40 pump hall sensor. - * @details \b Inputs: p40PumpTachCount + * @details \b Inputs: p40PumpRPMCounts * @details \b Outputs: none - * @return P40 pump tachometer count + * @return P40 pump rpm count *************************************************************************/ -U16 getFPGAP40PumpTachCount( void ) +U16 getFPGAP40PumpRPMCount( void ) { - return GET_FPGA_SENSOR_FIELD( p40PumpTachCount ); + return GET_FPGA_SENSOR_FIELD( p40PumpRPMCounts ); } /*********************************************************************//**