diff options
| author | Paul Sokolovsky | 2015-10-29 20:07:16 +0300 |
|---|---|---|
| committer | Paul Sokolovsky | 2015-10-29 20:07:16 +0300 |
| commit | 4a9eac20b9ad67deb569c5ded15e22d2f51cd0e2 (patch) | |
| tree | 2528807950bc71158c0f8683b9b9563e30337fa0 | |
| parent | 6a09e7d7aea2a5ef02cf1c04769b8eb58aef9e60 (diff) | |
minimal: Use mp_hal_ticks_ms().
| -rw-r--r-- | minimal/mpconfigport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/minimal/mpconfigport.h b/minimal/mpconfigport.h index 6547b1ae1..c585593f1 100644 --- a/minimal/mpconfigport.h +++ b/minimal/mpconfigport.h @@ -76,7 +76,7 @@ extern const struct _mp_obj_fun_builtin_t mp_builtin_open_obj; // We need to provide a declaration/definition of alloca() #include <alloca.h> -#define HAL_GetTick() 0 +#define mp_hal_ticks_ms() 0 int mp_hal_stdin_rx_chr(void); void mp_hal_stdout_tx_str(const char *str); void mp_hal_stdout_tx_strn(const char *str, mp_uint_t len); |
