From a7450144de20cb086ba5a9602bd5a7ad44fb83af Mon Sep 17 00:00:00 2001 From: "Robin.Mueller" Date: Fri, 3 Jan 2020 15:39:32 +0100 Subject: [PATCH] doxygen group definitions moved to framework --- devicehandlers/DeviceCommunicationIF.h | 4 ++++ subsystem/SubsystemBase.h | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/devicehandlers/DeviceCommunicationIF.h b/devicehandlers/DeviceCommunicationIF.h index ca0e9fe2..06c228f7 100644 --- a/devicehandlers/DeviceCommunicationIF.h +++ b/devicehandlers/DeviceCommunicationIF.h @@ -3,6 +3,10 @@ #include #include +/** + * @defgroup interfaces Interfaces + * @brief Communication interfaces for flight software objects + */ /** * @brief This is an interface to decouple device communication from diff --git a/subsystem/SubsystemBase.h b/subsystem/SubsystemBase.h index 3294c46d..1a050a9a 100644 --- a/subsystem/SubsystemBase.h +++ b/subsystem/SubsystemBase.h @@ -12,6 +12,10 @@ #include #include +/** + * @defgroup subsystems Subsystem Objects + * Contains all Subsystem and Assemblies + */ class SubsystemBase: public SystemObject, public HasModesIF, public HasHealthIF,