Home
last modified time | relevance | path

Searched refs:us (Results 1 – 5 of 5) sorted by relevance

/hal_nordic-latest/nrfx/drivers/src/
Dnrfx_systick.c78 #define NRFX_SYSTICK_ASSERT_TIMEOUT(us) \ argument
79 NRFX_ASSERT(us <= (NRFX_SYSTICK_TICKS_MAX / ((SystemCoreClock) / NRFX_SYSTICK_US)));
92 static inline uint32_t nrfx_systick_us_tick(uint32_t us) in nrfx_systick_us_tick() argument
94 return us * ((SystemCoreClock) / NRFX_SYSTICK_US); in nrfx_systick_us_tick()
127 bool nrfx_systick_test(nrfx_systick_state_t const * p_state, uint32_t us) in nrfx_systick_test() argument
129 NRFX_SYSTICK_ASSERT_TIMEOUT(us); in nrfx_systick_test()
132 return (diff >= nrfx_systick_us_tick(us)); in nrfx_systick_test()
146 void nrfx_systick_delay_us(uint32_t us) in nrfx_systick_delay_us() argument
148 NRFX_SYSTICK_ASSERT_TIMEOUT(us); in nrfx_systick_delay_us()
149 nrfx_systick_delay_ticks(nrfx_systick_us_tick(us)); in nrfx_systick_delay_us()
/hal_nordic-latest/drivers/nrf_802154/driver/src/mac_features/
Dnrf_802154_ie_writer.c100 uint32_t us; in csl_phase_calc() local
139 us = csl_period_us - time_from_previous_window; in csl_phase_calc()
143 us = (uint32_t)((anchor_time - csl_ref_time_us) % csl_period_us); in csl_phase_calc()
150 result = nrf_802154_delayed_trx_nearest_drx_time_to_midpoint_get(&us); in csl_phase_calc()
158 us -= m_csl_time_to_radio_address_us; in csl_phase_calc()
165 uint32_t csl_phase = (us + (CSL_US_PER_UNIT >> 1)) / CSL_US_PER_UNIT; in csl_phase_calc()
/hal_nordic-latest/nrfx/drivers/include/
Dnrfx_systick.h97 bool nrfx_systick_test(nrfx_systick_state_t const * p_state, uint32_t us);
111 void nrfx_systick_delay_us(uint32_t us);
Dnrfx_rtc.h52 #define NRFX_RTC_US_TO_TICKS(us,freq) (((us) * (freq)) / 1000000U) argument
/hal_nordic-latest/drivers/nrf_802154/sl/include/platform/
Dnrf_802154_platform_sl_lptimer.h100 uint64_t nrf_802154_platform_sl_lptimer_us_to_lpticks_convert(uint64_t us, bool round_up);