Index: firmware/App/Services/StateServices/TubeSetInstall.c =================================================================== diff -u -r83310420ae862de4724f8cfbbaeda9936c47801b -r5366722d2325ea93db0ad1f696db78597af3b7c6 --- firmware/App/Services/StateServices/TubeSetInstall.c (.../TubeSetInstall.c) (revision 83310420ae862de4724f8cfbbaeda9936c47801b) +++ firmware/App/Services/StateServices/TubeSetInstall.c (.../TubeSetInstall.c) (revision 5366722d2325ea93db0ad1f696db78597af3b7c6) @@ -488,4 +488,18 @@ } } +/*********************************************************************//** + * @brief + * The isTubeSetInstallAwaitingConfirmation function reports whether the + * Tube Set Install service is awaiting tubing set confirmation. + * @details \b Inputs: currentInstallState. + * @details \b Outputs: none. + * @return TRUE when awaiting tubing set confirmation, otherwise FALSE. + *************************************************************************/ +BOOL isTubeSetInstallAwaitingConfirmation( void ) +{ + return ( TUBE_SET_INSTALL_STATE_AWAIT_TUBE_SET_CONFIRMATION == + currentInstallState ) ? TRUE : FALSE; +} + /**@}*/