18 lines
283 B
C++
18 lines
283 B
C++
#ifndef DEBUG_TIMES_H
|
|
#define DEBUG_TIMES_H
|
|
|
|
#include <list>
|
|
#include <cstdint>
|
|
|
|
#include <Arduino.h>
|
|
|
|
class DebugTimes {
|
|
public:
|
|
DebugTimes();
|
|
void stop(const char* name, uint16_t minTime = 0);
|
|
|
|
private:
|
|
uint64_t startTime;
|
|
};
|
|
|
|
#endif //DEBUG_TIMES_H
|