summaryrefslogtreecommitdiff
path: root/include/esp8266/driver/uptime.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/esp8266/driver/uptime.h')
-rw-r--r--include/esp8266/driver/uptime.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/include/esp8266/driver/uptime.h b/include/esp8266/driver/uptime.h
deleted file mode 100644
index 21740c9..0000000
--- a/include/esp8266/driver/uptime.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef UPTIME_H
-#define UPTIME_H
-
-extern "C" {
-#include "osapi.h"
-#include "user_interface.h"
-}
-#include "c_types.h"
-
-class Uptime {
- private:
- Uptime(const Uptime &copy);
-
- public:
- Uptime () {}
- inline uint32_t get_us() { return system_get_time(); }
-
- inline uint32_t get_cycles()
- {
- uint32_t ccount;
- asm volatile ("esync; rsr %0,ccount":"=a" (ccount));
- return ccount;
- }
-};
-
-extern Uptime uptime;
-
-#endif