1 parent 0ab3725 commit 5a2a4e9Copy full SHA for 5a2a4e9
1 file changed
py/mphal.h
@@ -54,8 +54,16 @@ void mp_hal_stdout_tx_strn_cooked(const char *str, size_t len);
54
void mp_hal_delay_ms(mp_uint_t ms);
55
#endif
56
57
+#ifndef mp_hal_delay_us
58
+void mp_hal_delay_us(mp_uint_t us);
59
+#endif
60
+
61
#ifndef mp_hal_ticks_ms
62
mp_uint_t mp_hal_ticks_ms(void);
63
64
65
+#ifndef mp_hal_ticks_us
66
+mp_uint_t mp_hal_ticks_us(void);
67
68
69
#endif // __MICROPY_INCLUDED_PY_MPHAL_H__
0 commit comments