Index: firmware/App/Services/FpgaTD.c =================================================================== diff -u -r539d38e6125069ea8aa908631e62fd8adf05459c -r1920626b448b9ee88ae9fcfb5461067fc92da648 --- firmware/App/Services/FpgaTD.c (.../FpgaTD.c) (revision 539d38e6125069ea8aa908631e62fd8adf05459c) +++ firmware/App/Services/FpgaTD.c (.../FpgaTD.c) (revision 1920626b448b9ee88ae9fcfb5461067fc92da648) @@ -171,9 +171,6 @@ U16 bpSystolic; ///< Reg 388. Systolic BP in mmHg. U16 bpDiastolic; ///< Reg 390. Diastolic BP in mmHg. U16 bpHr; ///< Reg 392. Heart rate in BPM. - U16 bpMap; ///< Reg 394. Mean arterial pressure in mmHg. - U08 bpStatus; ///< Reg 396. BP status register. - U08 bpErrorCode; ///< Reg 397. BP error code register. } FPGA_SENSORS_T; /// Record structure for FPGA continuous priority writes. @@ -1514,38 +1511,4 @@ return fpgaSensorReadings.bpHr; } -/*********************************************************************//** -* The getNIBPMAP function returns the FPGA mean arterial pressure -* measurement. -* @details \b Inputs: fpgaSensorReadings.bpMap -* @details \b Outputs: none -* @return Mean arterial pressure in mmHg. -*************************************************************************/ -U16 getNIBPMAP( void ) -{ - return fpgaSensorReadings.bpMap; -} - -/*********************************************************************//** -* The getNIBPStatus function returns the FPGA NIBP status register. -* @details \b Inputs: fpgaSensorReadings.bpStatus -* @details \b Outputs: none -* @return FPGA NIBP status register value. -*************************************************************************/ -U08 getNIBPStatus( void ) -{ - return fpgaSensorReadings.bpStatus; -} - -/*********************************************************************//** -* The getNIBPErrorCode function returns the FPGA NIBP error code. -* @details \b Inputs: fpgaSensorReadings.bpErrorCode -* @details \b Outputs: none -* @return FPGA NIBP error code. -*************************************************************************/ -U08 getNIBPErrorCode( void ) -{ - return fpgaSensorReadings.bpErrorCode; -} - /**@}*/