Skip to content
Snippets Groups Projects
Commit 4a9eac20 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

minimal: Use mp_hal_ticks_ms().

parent 6a09e7d7
No related branches found
No related tags found
No related merge requests found
...@@ -76,7 +76,7 @@ extern const struct _mp_obj_fun_builtin_t mp_builtin_open_obj; ...@@ -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() // We need to provide a declaration/definition of alloca()
#include <alloca.h> #include <alloca.h>
#define HAL_GetTick() 0 #define mp_hal_ticks_ms() 0
int mp_hal_stdin_rx_chr(void); int mp_hal_stdin_rx_chr(void);
void mp_hal_stdout_tx_str(const char *str); void mp_hal_stdout_tx_str(const char *str);
void mp_hal_stdout_tx_strn(const char *str, mp_uint_t len); void mp_hal_stdout_tx_strn(const char *str, mp_uint_t len);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment