Robin Mueller
024e06a3d3
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
15 lines
228 B
C++
15 lines
228 B
C++
#ifndef MISSION_TRACE_H_
|
|
#define MISSION_TRACE_H_
|
|
|
|
#include <cstdint>
|
|
|
|
#define OBSW_THREAD_TRACING 0
|
|
|
|
namespace trace {
|
|
|
|
void threadTrace(uint32_t& counter, const char* name, unsigned div = 5);
|
|
|
|
}
|
|
|
|
#endif /* MISSION_TRACE_H_ */
|