eive-obsw/mission/trace.cpp
Robin Mueller 66d20dc118
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
add tracing for first tasks
2023-02-14 10:59:35 +01:00

11 lines
215 B
C++

#include "trace.h"
#include "fsfw/serviceinterface.h"
void trace::threadTrace(uint32_t& counter, const char* name) {
counter++;
if (counter % 5 == 0) {
sif::debug << name << " running" << std::endl;
}
}