Skip to content
Snippets Groups Projects
Commit bc7ca7ca authored by Pavol Rusnak's avatar Pavol Rusnak Committed by Paul Sokolovsky
Browse files

unix/mphalport: Add mp_hal_delay_us() for consistency with other ports.

parent 13d06a83
Branches
Tags
No related merge requests found
...@@ -35,6 +35,7 @@ void mp_hal_stdio_mode_raw(void); ...@@ -35,6 +35,7 @@ void mp_hal_stdio_mode_raw(void);
void mp_hal_stdio_mode_orig(void); void mp_hal_stdio_mode_orig(void);
static inline void mp_hal_delay_ms(mp_uint_t ms) { usleep((ms) * 1000); } static inline void mp_hal_delay_ms(mp_uint_t ms) { usleep((ms) * 1000); }
static inline void mp_hal_delay_us(mp_uint_t us) { usleep(us); }
#define RAISE_ERRNO(err_flag, error_val) \ #define RAISE_ERRNO(err_flag, error_val) \
{ if (err_flag == -1) \ { if (err_flag == -1) \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment