Index: firmware/App/Services/FpgaDD.c =================================================================== diff -u -rd3443d6a118d1d2565e86d95b5c7013d91145fea -r862bea855cd392328aad1f4a93a275980ee17f26 --- firmware/App/Services/FpgaDD.c (.../FpgaDD.c) (revision d3443d6a118d1d2565e86d95b5c7013d91145fea) +++ firmware/App/Services/FpgaDD.c (.../FpgaDD.c) (revision 862bea855cd392328aad1f4a93a275980ee17f26) @@ -463,7 +463,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; }