Index: firmware/App/Services/FpgaDD.c =================================================================== diff -u -r7245d34b8ac29013f54c6032f3f26d36f09cbe26 -rdaa4204266112042cdd5ea671df81b7501f1623f --- firmware/App/Services/FpgaDD.c (.../FpgaDD.c) (revision 7245d34b8ac29013f54c6032f3f26d36f09cbe26) +++ firmware/App/Services/FpgaDD.c (.../FpgaDD.c) (revision daa4204266112042cdd5ea671df81b7501f1623f) @@ -462,7 +462,6 @@ U16 fpgaACDCPMonVrms; ///< Reg 824. AC DC Power Supply RMS Voltage U16 fpgaACHeaterPMonIrms; ///< Reg 826. AC Heater RMS Current U16 fpgaACHeaterPMonVrms; ///< Reg 828. AC Heater RMS Voltage. - } DD_FPGA_SENSORS_T; // TODO: Remove when Beta 1.9 is obsolete @@ -4023,24 +4022,24 @@ /*********************************************************************//** * @brief - * The getFPGAACDCPowerSupplyCurrent function gets AC/DC Power Supply Current + * The getFPGAACToDCPowerSupplyCurrent function gets AC/DC Power Supply Current * @details \b Inputs: fpgaACDCPMonIrms * @details \b Outputs: none * @return power supply current in counts. *************************************************************************/ -U16 getFPGAACDCPowerSupplyCurrent( void ) +U16 getFPGAACToDCPowerSupplyCurrent( void ) { return fpgaSensorReadings.fpgaACDCPMonIrms; } /*********************************************************************//** * @brief - * The getFPGAACDCPowerSupplyCurrent function gets AC/DC Power Supply Voltage + * The getFPGAACToDCPowerSupplyVoltage function gets AC/DC Power Supply Voltage * @details \b Inputs: fpgaACDCPMonVrms * @details \b Outputs: none * @return power supply voltage in counts. *************************************************************************/ -U16 getFPGAACDCPowerSupplyVoltage( void ) +U16 getFPGAACToDCPowerSupplyVoltage( void ) { return fpgaSensorReadings.fpgaACDCPMonVrms; }