Index: firmware/App/Services/FpgaTD.c =================================================================== diff -u -raa6d45143096dfab776ce2ed7c775cfe2dd6db18 -r3fe55376370dc82b5edcb20ac6026d8f079e401b --- firmware/App/Services/FpgaTD.c (.../FpgaTD.c) (revision aa6d45143096dfab776ce2ed7c775cfe2dd6db18) +++ firmware/App/Services/FpgaTD.c (.../FpgaTD.c) (revision 3fe55376370dc82b5edcb20ac6026d8f079e401b) @@ -763,29 +763,29 @@ /*********************************************************************//** * @brief - * The setAirPumpMotorPowerLevel function sets the air pump motor power level + * The setH12AirPumpMotorPowerLevel function sets the air pump motor power level * to 0 to turn pump off or 1..255 for varying power levels. * @details \b Inputs: fpgaActuatorSetPoints.h12Control * @details \b Outputs: fpgaActuatorSetPoints.h12Control * @param power The set power level to set the H12 air pump to. * @return none *************************************************************************/ -void setAirPumpMotorPowerLevel( U08 power ) +void setH12AirPumpMotorPowerLevel( U08 power ) { fpgaActuatorSetPoints.h12Control = power; } /*********************************************************************//** * @brief - * The setAirPumpMotorPWMCntTime function sets the air pump motor PWM count + * The setH12AirPumpMotorPWMCntTime function sets the air pump motor PWM count * time in increments of 10 nS. The PWM period will then be 255 x given * value x 10 nS. * @details \b Inputs: fpgaActuatorSetPoints.h12Period * @details \b Outputs: fpgaActuatorSetPoints.h12Period * @param tenNS The time associated with each PWM count in power level setting. * @return none *************************************************************************/ -void setAirPumpMotorPWMCntTime( U16 tenNS ) +void setH12AirPumpMotorPWMCntTime( U16 tenNS ) { fpgaActuatorSetPoints.h12Period = tenNS; }