smaller changes and documentation

This commit is contained in:
Robin Müller 2021-01-18 19:49:15 +01:00
parent 113b4b5ffa
commit d4b08459f4
2 changed files with 10 additions and 2 deletions

View File

@ -1,5 +1,6 @@
#include <fsfw/action/HasActionsIF.h>
#include "ActionMessage.h"
#include "HasActionsIF.h"
#include "../objectmanager/ObjectManagerIF.h"
#include "../storagemanager/StorageManagerIF.h"

View File

@ -4,8 +4,15 @@
#include "../ipc/CommandMessage.h"
#include "../objectmanager/ObjectManagerIF.h"
#include "../storagemanager/StorageManagerIF.h"
typedef uint32_t ActionId_t;
using ActionId_t = uint32_t;
/**
* @brief These messages are part of the action module of the FSFW.
* @details
* These messages are sent amongst objects implementing the HasActionsIF. The ActionHelper
* class is able to process these messages.
*/
class ActionMessage {
private:
ActionMessage();