How to set the access address for BLE advertising access address using NRF_RADIO?

The NRF RADIO documentation is not clear about the access address and how one can set it up.

I want to send on the BLE advertising channels for which it is needed to form the packet structure properly.

For the advertising packets the access address must be "0x8E89BED6" which is 4 bytes.

To do this, based on NRF RADIO documentation and APIs, I will need to use a base and prefix address to create the desired access address. 

However, it is not very clear how one can do that. I know that there are two functions for base and prefix parts of the address but it is not clear how to do it. Particularly, what should go in the question arguments below:

    uint8_t RF_addrss[4] = {0x8E, 0x89, 0xBE, 0xD6};
    
	nrf_radio_base0_set(NRF_RADIO, ?????? );
	nrf_radio_prefix0_set(NRF_RADIO, ??????);

Related