diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-10-29 13:03:44 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-10-29 13:03:59 +0300 |
commit | ebd9f550e8e0916e1b6b86720044e402201b5a69 (patch) | |
tree | 04721b3510f93ba63d2d4847f286f08f0e5c91d9 /esp8266/esp_mphal.c | |
parent | 5699fc9d0e16b89b8052d29db9a3c5a349dab94a (diff) |
esp8266: Switch to standard mp_hal_delay_ms() MPHAL function.
Diffstat (limited to 'esp8266/esp_mphal.c')
-rw-r--r-- | esp8266/esp_mphal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/esp8266/esp_mphal.c b/esp8266/esp_mphal.c index 5252e9ce8..44ccea42b 100644 --- a/esp8266/esp_mphal.c +++ b/esp8266/esp_mphal.c @@ -86,8 +86,8 @@ uint32_t HAL_GetTick(void) { return system_get_time() / 1000; } -void HAL_Delay(uint32_t Delay) { - mp_hal_delay_us(Delay * 1000); +void mp_hal_delay_ms(uint32_t delay) { + mp_hal_delay_us(delay * 1000); } void mp_hal_set_interrupt_char(int c) { |