send hk report back to sender instead of default destination
This commit is contained in:
parent
5b1651e1a6
commit
2af6e85f87
@ -9,7 +9,6 @@
|
|||||||
#include "fsfw/housekeeping/HousekeepingSnapshot.h"
|
#include "fsfw/housekeeping/HousekeepingSnapshot.h"
|
||||||
#include "fsfw/ipc/QueueFactory.h"
|
#include "fsfw/ipc/QueueFactory.h"
|
||||||
#include "fsfw/objectmanager/ObjectManager.h"
|
#include "fsfw/objectmanager/ObjectManager.h"
|
||||||
#include "fsfw/timemanager/CCSDSTime.h"
|
|
||||||
|
|
||||||
using namespace hk;
|
using namespace hk;
|
||||||
|
|
||||||
@ -84,6 +83,7 @@ ReturnValue_t PeriodicHelper::performHkOperation() {
|
|||||||
|
|
||||||
ReturnValue_t PeriodicHelper::handleHousekeepingMessage(CommandMessage* message) {
|
ReturnValue_t PeriodicHelper::handleHousekeepingMessage(CommandMessage* message) {
|
||||||
Command_t command = message->getCommand();
|
Command_t command = message->getCommand();
|
||||||
|
MessageQueueId_t sender = message->getSender();
|
||||||
dp::sid_t sid = HousekeepingMessage::getStructureId(message);
|
dp::sid_t sid = HousekeepingMessage::getStructureId(message);
|
||||||
ReturnValue_t result = returnvalue::OK;
|
ReturnValue_t result = returnvalue::OK;
|
||||||
switch (command) {
|
switch (command) {
|
||||||
@ -113,7 +113,7 @@ ReturnValue_t PeriodicHelper::handleHousekeepingMessage(CommandMessage* message)
|
|||||||
}
|
}
|
||||||
|
|
||||||
case (HousekeepingMessage::GENERATE_ONE_PARAMETER_REPORT): {
|
case (HousekeepingMessage::GENERATE_ONE_PARAMETER_REPORT): {
|
||||||
return generateHousekeepingPacket(HousekeepingMessage::getStructureId(message));
|
return generateHousekeepingPacket(HousekeepingMessage::getStructureId(message), sender);
|
||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user