diff options
Diffstat (limited to 'esp8266/esp_mphal.c')
-rw-r--r-- | esp8266/esp_mphal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/esp_mphal.c b/esp8266/esp_mphal.c index 44ccea42b..471b1fe34 100644 --- a/esp8266/esp_mphal.c +++ b/esp8266/esp_mphal.c @@ -82,7 +82,7 @@ void mp_hal_stdout_tx_strn_cooked(const char *str, uint32_t len) { } } -uint32_t HAL_GetTick(void) { +uint32_t mp_hal_ticks_ms(void) { return system_get_time() / 1000; } |