Lines Matching full:segment
770 * @brief Function for setting Device address base segment.
772 * @param dab_value Particular base segment value.
773 * @param segment Index of the particular Device address base segment register.
775 __STATIC_INLINE void nrf_radio_dab_set(uint32_t dab_value, uint8_t segment);
778 * @brief Function for getting Device address base segment.
780 * @param segment Number of the Device address base segment.
782 * @return Particular segment of the Device address base.
784 __STATIC_INLINE uint32_t nrf_radio_dab_get(uint8_t segment);
797 * @param prefix_index Number of the Device address prefix segment.
799 * @return Particular segment of the Device address prefix.
1274 __STATIC_INLINE void nrf_radio_dab_set(uint32_t dab_value, uint8_t segment) in nrf_radio_dab_set() argument
1276 NRFX_ASSERT(segment < 8); in nrf_radio_dab_set()
1277 NRF_RADIO->DAB[segment] = dab_value; in nrf_radio_dab_set()
1280 __STATIC_INLINE uint32_t nrf_radio_dab_get(uint8_t segment) in nrf_radio_dab_get() argument
1282 NRFX_ASSERT(segment < 8); in nrf_radio_dab_get()
1283 return NRF_RADIO->DAB[segment]; in nrf_radio_dab_get()