print event listeners
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
This commit is contained in:
parent
bbb07dd459
commit
a6f3b6fc83
@ -1,3 +1,4 @@
|
|||||||
|
#include <fsfw/events/EventManager.h>
|
||||||
#include "CoreController.h"
|
#include "CoreController.h"
|
||||||
|
|
||||||
#include "OBSWConfig.h"
|
#include "OBSWConfig.h"
|
||||||
@ -99,6 +100,10 @@ ReturnValue_t CoreController::initializeAfterTaskCreation() {
|
|||||||
setenv("PATH", updatedEnvPath.c_str(), true);
|
setenv("PATH", updatedEnvPath.c_str(), true);
|
||||||
updateProtInfo();
|
updateProtInfo();
|
||||||
initPrint();
|
initPrint();
|
||||||
|
auto eventManager = ObjectManager::instance()->get<EventManager>(objects::EVENT_MANAGER);
|
||||||
|
if(eventManager != nullptr) {
|
||||||
|
eventManager->printListeners();
|
||||||
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
2
fsfw
2
fsfw
@ -1 +1 @@
|
|||||||
Subproject commit bd05afbddd7e2da43b19b8ceafb6272e73d5464d
|
Subproject commit a12e98d9481e224a30a1150e9dfd0a48501f410f
|
@ -229,7 +229,7 @@ void SusHandler::printDataset() {
|
|||||||
#if OBSW_VERBOSE_LEVEL >= 1 && OBSW_DEBUG_SUS == 1
|
#if OBSW_VERBOSE_LEVEL >= 1 && OBSW_DEBUG_SUS == 1
|
||||||
if (divider.checkAndIncrement()) {
|
if (divider.checkAndIncrement()) {
|
||||||
sif::info << "SUS " << std::setw(2) << std::dec << static_cast<int>(susIdx) << " ID " << std::hex
|
sif::info << "SUS " << std::setw(2) << std::dec << static_cast<int>(susIdx) << " ID " << std::hex
|
||||||
<< this->getObjectId() << " [" << std::hex << std::setw(3);
|
<< "0x" << this->getObjectId() << " [" << std::hex << std::setw(3);
|
||||||
sif::info << dataset.ain0 << ",";
|
sif::info << dataset.ain0 << ",";
|
||||||
sif::info << dataset.ain1 << ",";
|
sif::info << dataset.ain1 << ",";
|
||||||
sif::info << dataset.ain2 << ",";
|
sif::info << dataset.ain2 << ",";
|
||||||
|
@ -79,7 +79,7 @@ void ObjectFactory::produceGenericObjects() {
|
|||||||
new Service3Housekeeping(objects::PUS_SERVICE_3_HOUSEKEEPING, apid::EIVE_OBSW,
|
new Service3Housekeeping(objects::PUS_SERVICE_3_HOUSEKEEPING, apid::EIVE_OBSW,
|
||||||
pus::PUS_SERVICE_3);
|
pus::PUS_SERVICE_3);
|
||||||
new Service5EventReporting(objects::PUS_SERVICE_5_EVENT_REPORTING, apid::EIVE_OBSW,
|
new Service5EventReporting(objects::PUS_SERVICE_5_EVENT_REPORTING, apid::EIVE_OBSW,
|
||||||
pus::PUS_SERVICE_5, 50);
|
pus::PUS_SERVICE_5, 120);
|
||||||
new Service8FunctionManagement(objects::PUS_SERVICE_8_FUNCTION_MGMT, apid::EIVE_OBSW,
|
new Service8FunctionManagement(objects::PUS_SERVICE_8_FUNCTION_MGMT, apid::EIVE_OBSW,
|
||||||
pus::PUS_SERVICE_8, 3, 60);
|
pus::PUS_SERVICE_8, 3, 60);
|
||||||
new Service9TimeManagement(objects::PUS_SERVICE_9_TIME_MGMT, apid::EIVE_OBSW, pus::PUS_SERVICE_9);
|
new Service9TimeManagement(objects::PUS_SERVICE_9_TIME_MGMT, apid::EIVE_OBSW, pus::PUS_SERVICE_9);
|
||||||
|
Loading…
Reference in New Issue
Block a user