Merge branch 'mueller/action-bugfix' into mueller/master

This commit is contained in:
Robin Müller 2021-01-18 19:50:17 +01:00
commit 6e6e1304bb
2 changed files with 10 additions and 1 deletions

View File

@ -1,5 +1,7 @@
#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. Classes like the
* ActionHelper are able to process these messages.
*/
class ActionMessage {
private:
ActionMessage();