We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6429335 commit 014d877Copy full SHA for 014d877
src/AudioTools/AudioRuntime.h
@@ -11,7 +11,8 @@
11
inline void delay(uint32_t ms){ vTaskDelay(ms * 1000 / portTICK_PERIOD_MS);}
12
inline uint32_t millis() {return (xTaskGetTickCount() * portTICK_PERIOD_MS);}
13
inline void delayMicroseconds(uint32_t ms) {esp_rom_delay_us(ms);}
14
-inline uint64_t micros() { return esp_timer_get_time();}
+//inline uint64_t micros() { return xTaskGetTickCount();}
15
+extern uint64_t micros();
16
17
#endif
18
0 commit comments