Index: firmware/App/Services/StateServices/TubeSetAutoEject.h =================================================================== diff -u -r069dee3a2428d3c6bb281db1844a372ae6e2063a -re4eceb1ac6e8091d10e0fab49d2d5a9c5e5f1c67 --- firmware/App/Services/StateServices/TubeSetAutoEject.h (.../TubeSetAutoEject.h) (revision 069dee3a2428d3c6bb281db1844a372ae6e2063a) +++ firmware/App/Services/StateServices/TubeSetAutoEject.h (.../TubeSetAutoEject.h) (revision e4eceb1ac6e8091d10e0fab49d2d5a9c5e5f1c67) @@ -8,7 +8,7 @@ * @file TubeSetAutoEject.h * * @author (last) Praneeth Bunne -* @date (last) 12-Jun-2026 +* @date (last) 12-May-2026 * * @author (original) Praneeth Bunne * @date (original) 01-May-2026 @@ -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 /**@}*/