2020-10-29 17:52:28 +01:00
|
|
|
#ifndef FSFW_HEALTH_HEALTHMESSAGE_H_
|
|
|
|
#define FSFW_HEALTH_HEALTHMESSAGE_H_
|
2016-06-15 23:48:41 +02:00
|
|
|
|
2020-08-13 20:53:35 +02:00
|
|
|
#include "HasHealthIF.h"
|
|
|
|
#include "../ipc/CommandMessage.h"
|
2016-06-15 23:48:41 +02:00
|
|
|
|
|
|
|
class HealthMessage {
|
|
|
|
public:
|
2020-06-17 21:15:19 +02:00
|
|
|
static const uint8_t MESSAGE_ID = messagetypes::HEALTH_COMMAND;
|
2020-10-29 17:52:28 +01:00
|
|
|
|
|
|
|
static const Command_t HEALTH_SET = MAKE_COMMAND_ID(1);
|
|
|
|
// No reply expected, health will be announced as event!
|
|
|
|
static const Command_t HEALTH_ANNOUNCE = MAKE_COMMAND_ID(2);
|
|
|
|
// Same as before, but all objects in health table will
|
|
|
|
// announce their health as events.
|
|
|
|
static const Command_t HEALTH_ANNOUNCE_ALL = MAKE_COMMAND_ID(3);
|
|
|
|
|
2016-06-15 23:48:41 +02:00
|
|
|
static const Command_t HEALTH_INFO = MAKE_COMMAND_ID(5);
|
|
|
|
static const Command_t REPLY_HEALTH_SET = MAKE_COMMAND_ID(6);
|
|
|
|
|
|
|
|
static void setHealthMessage(CommandMessage *message, Command_t command,
|
2020-10-29 17:52:28 +01:00
|
|
|
HasHealthIF::HealthState health,
|
|
|
|
HasHealthIF::HealthState oldHealth = HasHealthIF::FAULTY);
|
2016-06-15 23:48:41 +02:00
|
|
|
static void setHealthMessage(CommandMessage *message, Command_t command);
|
|
|
|
|
|
|
|
static HasHealthIF::HealthState getHealth(const CommandMessage *message);
|
|
|
|
|
|
|
|
static HasHealthIF::HealthState getOldHealth(const CommandMessage *message);
|
|
|
|
|
|
|
|
static void clear(CommandMessage *message);
|
|
|
|
|
|
|
|
private:
|
|
|
|
HealthMessage();
|
|
|
|
};
|
|
|
|
|
2020-10-29 17:52:28 +01:00
|
|
|
#endif /* FSFW_HEALTH_HEALTHMESSAGE_H_ */
|