Robin Mueller
66d20dc118
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
11 lines
215 B
C++
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;
|
|
}
|
|
}
|