payload mode announce
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
This commit is contained in:
@ -1,5 +1,13 @@
|
||||
#include "PayloadSubsystem.h"
|
||||
|
||||
#include "mission/payloadDefs.h"
|
||||
|
||||
PayloadSubsystem::PayloadSubsystem(object_id_t setObjectId, uint32_t maxNumberOfSequences,
|
||||
uint32_t maxNumberOfTables)
|
||||
: Subsystem(setObjectId, maxNumberOfSequences, maxNumberOfTables) {}
|
||||
|
||||
void PayloadSubsystem::announceMode(bool recursive) {
|
||||
const char* modeStr = payload::getModeStr(static_cast<payload::Mode>(mode));
|
||||
sif::info << "PAYLOAD subsystem is now in " << modeStr << " mode" << std::endl;
|
||||
Subsystem::announceMode(recursive);
|
||||
}
|
||||
|
Reference in New Issue
Block a user