Index: firmware/App/Services/FpgaRO.c =================================================================== diff -u -r51d83f99e63d9cb52951097996641cc5b3ddffd7 -re491c38c7c2e7850b5a7ff906c04d81eabf0efb8 --- firmware/App/Services/FpgaRO.c (.../FpgaRO.c) (revision 51d83f99e63d9cb52951097996641cc5b3ddffd7) +++ firmware/App/Services/FpgaRO.c (.../FpgaRO.c) (revision e491c38c7c2e7850b5a7ff906c04d81eabf0efb8) @@ -675,6 +675,54 @@ /*********************************************************************//** * @brief + * The getFPGAPPiRawPressure function gets the PPi pressure reading. + * @details \b Inputs: fpgaSensorReadings.pressurePpi + * @details \b Outputs: none + * @return PPi pressure + *************************************************************************/ +S16 getFPGAPPiRawPressure( void ) +{ + return fpgaSensorReadings.pressurePpi; +} + +/*********************************************************************//** + * @brief + * The getFPGAPPiRawTemperature function gets the PPi sensor temperature. + * @details \b Inputs: fpgaSensorReadings.temperaturePpi + * @details \b Outputs: none + * @return PPi sensor temperature + *************************************************************************/ +S16 getFPGAPPiRawTemperature( void ) +{ + return fpgaSensorReadings.temperaturePpi; +} + +/*********************************************************************//** + * @brief + * The getFPGAPPiReadCount function gets the PPi sensor read count. + * @details \b Inputs: fpgaSensorReadings.readCountPpi + * @details \b Outputs: none + * @return PPi sensor read count + *************************************************************************/ +U08 getFPGAPPiReadCount( void ) +{ + return fpgaSensorReadings.readCountPpi; +} + +/*********************************************************************//** + * @brief + * The getFPGAPPiErrorCount function gets the PPi sensor error count. + * @details \b Inputs: fpgaSensorReadings.errorCountPpi + * @details \b Outputs: none + * @return PPi sensor error count + *************************************************************************/ +U08 getFPGAPPiErrorCount( void ) +{ + return fpgaSensorReadings.errorCountPpi; +} + +/*********************************************************************//** + * @brief * The getFPGAFloaterState function gets the floater level state. * @details \b Inputs: fpgaSensorReadings.levelSwitch * @details \b Outputs: none