2016-10-22 17:15:26 +00:00
|
|
|
#include <zephyr.h>
|
2016-10-26 14:53:28 +00:00
|
|
|
#include "lib/utils/interrupt_char.h"
|
2016-10-22 17:15:26 +00:00
|
|
|
|
|
|
|
static inline mp_uint_t mp_hal_ticks_us(void) {
|
2016-12-03 21:47:20 +00:00
|
|
|
return SYS_CLOCK_HW_CYCLES_TO_NS(k_cycle_get_32()) / 1000;
|
2016-10-22 17:15:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline mp_uint_t mp_hal_ticks_ms(void) {
|
2016-12-03 21:47:20 +00:00
|
|
|
return k_uptime_get();
|
2016-10-22 17:15:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline mp_uint_t mp_hal_ticks_cpu(void) {
|
|
|
|
// ticks_cpu() is defined as using the highest-resolution timing source
|
|
|
|
// in the system. This is usually a CPU clock, but doesn't have to be,
|
|
|
|
// here we just use Zephyr hi-res timer.
|
2016-12-03 21:47:20 +00:00
|
|
|
return k_cycle_get_32();
|
2016-10-22 17:15:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void mp_hal_delay_us(mp_uint_t delay) {
|
2016-11-08 21:11:30 +00:00
|
|
|
k_busy_wait(delay);
|
2016-10-22 17:15:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void mp_hal_delay_ms(mp_uint_t delay) {
|
2016-11-08 21:11:30 +00:00
|
|
|
k_sleep(delay);
|
2016-10-22 17:15:26 +00:00
|
|
|
}
|
2019-03-18 13:54:08 +00:00
|
|
|
|
|
|
|
#define mp_hal_delay_us_fast(us) (mp_hal_delay_us(us))
|
|
|
|
#define mp_hal_pin_od_low(p) (mp_raise_NotImplementedError("mp_hal_pin_od_low"))
|
|
|
|
#define mp_hal_pin_od_high(p) (mp_raise_NotImplementedError("mp_hal_pin_od_high"))
|
|
|
|
#define mp_hal_pin_open_drain(p) (mp_raise_NotImplementedError("mp_hal_pin_open_drain"))
|