Home
last modified time | relevance | path

Searched refs:time_us (Results 1 – 15 of 15) sorted by relevance

/hal_nordic-latest/nrfx/soc/
Dnrfx_coredep.h103 NRF_STATIC_INLINE void nrfx_coredep_delay_us(uint32_t time_us);
115 NRF_STATIC_INLINE void nrfx_coredep_delay_us(uint32_t time_us) in nrfx_coredep_delay_us() argument
117 if (time_us == 0) in nrfx_coredep_delay_us()
121 uint32_t time_cycles = time_us * NRFX_DELAY_CPU_FREQ_MHZ; in nrfx_coredep_delay_us()
147 NRF_STATIC_INLINE void nrfx_coredep_delay_us(uint32_t time_us) in nrfx_coredep_delay_us() argument
149 if (time_us == 0) in nrfx_coredep_delay_us()
185 uint32_t cycles = time_us * NRFX_DELAY_CPU_FREQ_MHZ; in nrfx_coredep_delay_us()
190 nrf_vpr_csr_vtim_combined_counter_set(time_us * NRFX_DELAY_CPU_FREQ_MHZ); in nrfx_coredep_delay_us()
202 i < ((NRFX_DELAY_CPU_FREQ_MHZ * time_us) / NRFX_DELAY_RISCV_SLOWDOWN); in nrfx_coredep_delay_us()
/hal_nordic-latest/drivers/nrf_802154/driver/src/
Dnrf_802154_request_swi.c142 uint32_t time_us; ///< Requested time of energy detection procedure. member
429 uint32_t time_us, in swi_energy_detection() argument
436 p_slot->data.energy_detection.time_us = time_us; in swi_energy_detection()
726 uint32_t time_us) in nrf_802154_request_energy_detection() argument
731 time_us) in nrf_802154_request_energy_detection()
869 p_slot->data.energy_detection.time_us); in irq_handler_req_event()
Dnrf_802154_request_direct.c110 bool nrf_802154_request_energy_detection(nrf_802154_term_t term_lvl, uint32_t time_us) in nrf_802154_request_energy_detection() argument
112 REQUEST_FUNCTION_PARMS(nrf_802154_core_energy_detection, term_lvl, time_us) in nrf_802154_request_energy_detection()
Dnrf_802154_core.h179 bool nrf_802154_core_energy_detection(nrf_802154_term_t term_lvl, uint32_t time_us);
Dnrf_802154_request.h124 bool nrf_802154_request_energy_detection(nrf_802154_term_t term_lvl, uint32_t time_us);
Dnrf_802154.c566 bool nrf_802154_energy_detection(uint32_t time_us) in nrf_802154_energy_detection() argument
572 result = nrf_802154_request_energy_detection(NRF_802154_TERM_NONE, time_us); in nrf_802154_energy_detection()
Dnrf_802154_core.c2824 bool nrf_802154_core_energy_detection(nrf_802154_term_t term_lvl, uint32_t time_us) in nrf_802154_core_energy_detection() argument
2836 if (time_us < ED_ITER_DURATION) in nrf_802154_core_energy_detection()
2838 time_us = ED_ITER_DURATION; in nrf_802154_core_energy_detection()
2841 m_ed_time_left = time_us; in nrf_802154_core_energy_detection()
/hal_nordic-latest/nrfx/hal/
Dnrf_qdec.h468 NRF_STATIC_INLINE void nrf_qdec_ledpre_set(NRF_QDEC_Type * p_reg, uint32_t time_us);
728 NRF_STATIC_INLINE void nrf_qdec_ledpre_set(NRF_QDEC_Type * p_reg, uint32_t time_us) in nrf_qdec_ledpre_set() argument
730 p_reg->LEDPRE = time_us; in nrf_qdec_ledpre_set()
Dnrf_timer.h764 NRF_STATIC_INLINE uint32_t nrf_timer_us_to_ticks(uint32_t time_us,
973 NRF_STATIC_INLINE uint32_t nrf_timer_us_to_ticks(uint32_t time_us, in nrf_timer_us_to_ticks() argument
979 uint64_t ticks = ((time_us * 16ULL) >> prescaler); in nrf_timer_us_to_ticks()
/hal_nordic-latest/nrfx/drivers/src/
Dnrfx_timer.c277 uint32_t nrfx_timer_us_to_ticks(nrfx_timer_t const * p_instance, uint32_t time_us) in nrfx_timer_us_to_ticks() argument
281 uint64_t ticks = (((uint64_t)time_us * freq_base_mhz) >> prescaler); in nrfx_timer_us_to_ticks()
/hal_nordic-latest/nrfx/haly/
Dnrfy_qdec.h459 NRFY_STATIC_INLINE void nrfy_qdec_ledpre_set(NRF_QDEC_Type * p_reg, uint32_t time_us) in nrfy_qdec_ledpre_set() argument
461 nrf_qdec_ledpre_set(p_reg, time_us); in nrfy_qdec_ledpre_set()
/hal_nordic-latest/nrfx/drivers/include/
Dnrfx_timer.h342 uint32_t nrfx_timer_us_to_ticks(nrfx_timer_t const * p_instance, uint32_t time_us);
/hal_nordic-latest/drivers/nrf_802154/common/include/
Dnrf_802154.h610 bool nrf_802154_energy_detection(uint32_t time_us);
/hal_nordic-latest/drivers/nrf_802154/serialization/src/
Dnrf_802154_spinel_dec_net.c541 uint32_t time_us; in spinel_decode_prop_nrf_802154_energy_detection() local
547 &time_us); in spinel_decode_prop_nrf_802154_energy_detection()
554 bool result = nrf_802154_energy_detection(time_us); in spinel_decode_prop_nrf_802154_energy_detection()
Dnrf_802154_spinel_app.c1165 bool nrf_802154_energy_detection(uint32_t time_us) in nrf_802154_energy_detection() argument
1180 time_us); in nrf_802154_energy_detection()