From d8ac312e85fa31f3f42db8a70df95df946362aeb Mon Sep 17 00:00:00 2001 From: "spahr@ksat-stuttgart.de" Date: Sat, 22 Mar 2025 10:01:01 +0100 Subject: [PATCH] remove event because it's no longer needed. --- src/fsfw/health/HasHealthIF.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/fsfw/health/HasHealthIF.h b/src/fsfw/health/HasHealthIF.h index 483b60c1..11a1aed5 100644 --- a/src/fsfw/health/HasHealthIF.h +++ b/src/fsfw/health/HasHealthIF.h @@ -30,9 +30,6 @@ class HasHealthIF { //! Someone starts a recovery of a component (typically power-cycle). //! P1: Object Id of the recovering device. static const Event TRYING_RECOVERY = MAKE_EVENT(10, severity::MEDIUM); - //! Recovery is ongoing. Comes twice during recovery. - //! P1: 0 for the first, 1 for the second event. P2: 0 - static const Event RECOVERY_STEP = MAKE_EVENT(11, severity::MEDIUM); //! Recovery was completed. Not necessarily successful. No parameters. //! P1: Object Id of the recovering device. static const Event RECOVERY_DONE = MAKE_EVENT(12, severity::MEDIUM);