Index: firmware/App/Controllers/BPModule.c =================================================================== diff -u -r82e0b3947c200cddb401f2eeb22db4a4711d174d -r9b73ea7e6bae0b28591b132cd832c6a41633fc81 --- firmware/App/Controllers/BPModule.c (.../BPModule.c) (revision 82e0b3947c200cddb401f2eeb22db4a4711d174d) +++ firmware/App/Controllers/BPModule.c (.../BPModule.c) (revision 9b73ea7e6bae0b28591b132cd832c6a41633fc81) @@ -162,6 +162,9 @@ * corresponding blood pressure alarms. * @details \b Inputs: bpResults * @details \b Outputs: lowSystolicCount + * @details \b Alarms: ALARM_ID_TD_BP_SYSTOLIC_LOW_TOO_MANY, + * ALARM_ID_TD_BP_SYSTOLIC_LOW, ALARM_ID_TD_BP_SYSTOLIC_HIGH, + * ALARM_ID_TD_BP_HEART_RATE_LOW, ALARM_ID_TD_BP_HEART_RATE_HIGH * @return none ***************************************************************************/ static void checkBloodPressureReading( BP_VITALS_DATA_T *bpResults ) @@ -235,6 +238,7 @@ * measurement state * @details \b Inputs: none * @details \b Outputs: none + * @details \b Alarms: ALARM_ID_TD_BP_MODULE_ERROR * @return next BP module state ***************************************************************************/ static BP_MODULE_STATE_T handleBPModuleMeasureState( void ) Index: firmware/App/Services/FpgaTD.c =================================================================== diff -u -r6ce3614af20c9f80e259f030d75c106266a4e32b -r9b73ea7e6bae0b28591b132cd832c6a41633fc81 --- firmware/App/Services/FpgaTD.c (.../FpgaTD.c) (revision 6ce3614af20c9f80e259f030d75c106266a4e32b) +++ firmware/App/Services/FpgaTD.c (.../FpgaTD.c) (revision 9b73ea7e6bae0b28591b132cd832c6a41633fc81) @@ -1580,8 +1580,9 @@ * The setNIBPCommand function sets the FPGA NIBP command bits and pulses * the command ready bit to notify the FPGA that a new NIBP command is * available. -* @details \b Inputs: fpgaActuatorSetPoints -* @details \b Outputs: none +* @details \b Inputs: none +* @details \b Outputs: fpgaActuatorSetPoints +* @param command Blood pressure command to send to the FPGA. * @return none *************************************************************************/ void setNIBPCommand( U08 command ) @@ -1604,6 +1605,7 @@ * pressure register. * @details \b Inputs: fpgaActuatorSetPoints * @details \b Outputs: none +* @param pressure Initial cuff inflation pressure in mmHg. * @return none *************************************************************************/ void setNIBPInflatePressure( U16 pressure )