From 5745d7f01c1d34888086592a064c0a657d104b71 Mon Sep 17 00:00:00 2001 From: "spahr@ksat-stuttgart.de" Date: Wed, 22 Oct 2025 23:23:26 +0200 Subject: [PATCH] Changing the function definition to a virtual to allow overrides for custom applications --- src/fsfw/subsystem/SubsystemBase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fsfw/subsystem/SubsystemBase.h b/src/fsfw/subsystem/SubsystemBase.h index 5c21c5fd..e8a2f72d 100644 --- a/src/fsfw/subsystem/SubsystemBase.h +++ b/src/fsfw/subsystem/SubsystemBase.h @@ -113,7 +113,7 @@ class SubsystemBase : public SystemObject, * We need to know the target Submode, as children are able to inherit the submode * Still, we have a default for all child implementations which do not use submode inheritance */ - void executeTable(HybridIterator tableIter, + virtual void executeTable(HybridIterator tableIter, Submode_t targetSubmode = SUBMODE_NONE); ReturnValue_t updateChildMode(MessageQueueId_t queue, Mode_t mode, Submode_t submode); -- 2.43.0