Index: firmware/App/Services/FPGA.c =================================================================== diff -u -r0d46714bc22f87f7027c6e82ad59cef1a01ff69b -r90b9d26ec61408366dcc745b583a69414a2271cd --- firmware/App/Services/FPGA.c (.../FPGA.c) (revision 0d46714bc22f87f7027c6e82ad59cef1a01ff69b) +++ firmware/App/Services/FPGA.c (.../FPGA.c) (revision 90b9d26ec61408366dcc745b583a69414a2271cd) @@ -176,7 +176,7 @@ U16 fpgaFanOut2Pulse; ///< Reg 398. Fan outlet 2 pulse time in 2.5 resolution U16 fpgaFanIn3Pulse; ///< Reg 400. Fan inlet 3 pulse time in 2.5 resolution U16 fpgaFanOut3Pulse; ///< Reg 402. Fan outlet 3 pulse time in 2.5 resolution - U16 fpgaTimerCount; ///< Reg 404. Internal FPGA timer count. + U16 fpgaTimerCount_ms; ///< Reg 404. Internal FPGA timer count in ms. } DG_FPGA_SENSORS_T; typedef struct @@ -1788,14 +1788,14 @@ /*********************************************************************//** * @brief - * The getFPGATimerCount function gets the latest FPGA timer count. + * The getFPGATimerCount function gets the latest FPGA timer millisecond count. * @details Inputs: fpgaSensorReadings * @details Outputs: none * @return last FPGA timer count *************************************************************************/ U16 getFPGATimerCount( void ) { - return fpgaSensorReadings.fpgaTimerCount; + return fpgaSensorReadings.fpgaTimerCount_ms; } /*********************************************************************//**