Index: firmware/App/Services/StateServices/TubeSetAutoEject.h =================================================================== diff -u -r9cc543b1c2508280767573e20eddd94e68be1fb5 -r4c35d4de9fd7fccaf7aa4adb9a68115e823adf64 --- firmware/App/Services/StateServices/TubeSetAutoEject.h (.../TubeSetAutoEject.h) (revision 9cc543b1c2508280767573e20eddd94e68be1fb5) +++ firmware/App/Services/StateServices/TubeSetAutoEject.h (.../TubeSetAutoEject.h) (revision 4c35d4de9fd7fccaf7aa4adb9a68115e823adf64) @@ -35,14 +35,14 @@ /// Enumeration of Tube Set Auto-Eject states. enum Tube_Set_Auto_Eject_States { - TUBE_SET_AUTO_EJECT_STATE_AWAIT_CONFIRMATION = 0, // Waiting for user confirmation to auto-eject - TUBE_SET_AUTO_EJECT_STATE_HOMING, // Homing blood pump - TUBE_SET_AUTO_EJECT_STATE_EXTENDING_EJECTOR, // Extending ejector state - TUBE_SET_AUTO_EJECT_STATE_EJECTING, // Ejecting tubeset state - TUBE_SET_AUTO_EJECT_STATE_RETRACTING_EJECTOR, // Retracting ejector state - TUBE_SET_AUTO_EJECT_STATE_BACK_OFF, // Auto-Eject Back-off state - TUBE_SET_AUTO_EJECT_STATE_COMPLETE, // Auto-Eject complete state - NUM_OF_TUBE_SET_AUTO_EJECT_SUB_STATES, // Num of auto-eject sub-states + TUBE_SET_AUTO_EJECT_STATE_AWAIT_CONFIRMATION = 0, ///< Waiting for user confirmation to auto-eject + TUBE_SET_AUTO_EJECT_STATE_HOMING, ///< Homing blood pump + TUBE_SET_AUTO_EJECT_STATE_EXTENDING_EJECTOR, ///< Extending ejector state + TUBE_SET_AUTO_EJECT_STATE_EJECTING, ///< Ejecting tubeset state + TUBE_SET_AUTO_EJECT_STATE_RETRACTING_EJECTOR, ///< Retracting ejector state + TUBE_SET_AUTO_EJECT_STATE_BACK_OFF, ///< Auto-Eject Back-off state + TUBE_SET_AUTO_EJECT_STATE_COMPLETE, ///< Auto-Eject complete state + NUM_OF_TUBE_SET_AUTO_EJECT_SUB_STATES, ///< Num of auto-eject sub-states }; /// Type for TD Tube Set Auto-Eject service enumeration typedef enum Tube_Set_Auto_Eject_States TUBE_SET_AUTO_EJECT_STATE_T; @@ -53,7 +53,7 @@ void execTubeSetAutoEject( void ); // Execute the service state machine (call from ModePostTreat and ModeTreatment) BOOL isTubeSetAutoEjectComplete( void ); // Returns True once auto-eject finished successfully -BOOL handleAutoEjectRequest( MESSAGE_T *message ); // Handle UI auto-eject confirmation request +BOOL handleAutoEjectRequest( MESSAGE_T *message ); // Handle UI auto-eject confirmation request /**@}*/