Home
last modified time | relevance | path

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

/hal_nordic-latest/nrfx/hal/
Dnrf_radio.h952 NRF_STATIC_INLINE void nrf_radio_frequency_set(NRF_RADIO_Type * p_reg, uint16_t radio_frequency);
1802 NRF_STATIC_INLINE void nrf_radio_frequency_set(NRF_RADIO_Type * p_reg, uint16_t radio_frequency) in nrf_radio_frequency_set() argument
1804 NRFX_ASSERT(radio_frequency <= 2500); in nrf_radio_frequency_set()
1807 NRFX_ASSERT(radio_frequency >= 2360); in nrf_radio_frequency_set()
1810 if (radio_frequency < 2400) in nrf_radio_frequency_set()
1812 delta = (uint32_t)(radio_frequency - 2360) | RADIO_FREQUENCY_MAP_Msk; in nrf_radio_frequency_set()
1816 delta = (uint32_t)(radio_frequency - 2400); in nrf_radio_frequency_set()
1821 NRFX_ASSERT(radio_frequency >= 2400); in nrf_radio_frequency_set()
1822 p_reg->FREQUENCY = (uint32_t)(radio_frequency - 2400); in nrf_radio_frequency_set()