restructerd projekt

This commit is contained in:
2021-12-12 16:53:19 +01:00
parent 54e84e4b5d
commit a1d59c18ad
26 changed files with 492 additions and 487 deletions
+18
View File
@@ -0,0 +1,18 @@
#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