problems with output on host

This commit is contained in:
Robin Müller 2020-09-30 21:07:30 +02:00 committed by Robin.Mueller
parent 72b9cbfa80
commit 04031a828b
2 changed files with 12 additions and 4 deletions

View File

@ -2,6 +2,7 @@
#include <fsfw/tasks/TaskFactory.h>
#include <iostream>
#include <stdio.h>
#include <version.h>
#include <unistd.h>
@ -21,7 +22,7 @@ int main(void)
std::cout << "-- " << __DATE__ << " " << __TIME__ << " --" << std::endl;
InitMission::initMission();
std::cout << std::endl;
for(;;) {
// suspend main thread by sleeping it.
TaskFactory::delayTask(5000);

View File

@ -16,10 +16,17 @@
#include <iostream>
// This is configured for linux without \cr
ServiceInterfaceStream sif::debug("DEBUG", false);
ServiceInterfaceStream sif::info("INFO", false);
ServiceInterfaceStream sif::warning("WARNING", false);
#ifdef LINUX
ServiceInterfaceStream sif::debug("DEBUG");
ServiceInterfaceStream sif::info("INFO");
ServiceInterfaceStream sif::warning("WARNING");
ServiceInterfaceStream sif::error("ERROR", false, false, true);
#else
ServiceInterfaceStream sif::debug("DEBUG", true);
ServiceInterfaceStream sif::info("INFO", true);
ServiceInterfaceStream sif::warning("WARNING", true);
ServiceInterfaceStream sif::error("ERROR", true, false, true);
#endif
ObjectManagerIF *objectManager = nullptr;