I would like to implement Bluetooth 5 packet exchange without the softdevice.
How can we convert the nRF5_SDK\examples\peripheral\radio\receiver nRF5_SDK\examples\peripheral\radio\transmitter examples to Bluetooth 5?
I changed the following lines but had no success:
NRF_RADIO->MODE = (RADIO_MODE_MODE_Ble_LR125Kbit << RADIO_MODE_MODE_Pos); NRF_RADIO->PCNF0 = (3UL << RADIO_PCNF0_PLEN_Pos) | //BLE5 preamble (PACKET_S1_FIELD_SIZE << RADIO_PCNF0_S1LEN_Pos) | (PACKET_S0_FIELD_SIZE << RADIO_PCNF0_S0LEN_Pos) | (PACKET_LENGTH_FIELD_SIZE << RADIO_PCNF0_LFLEN_Pos);
The transmitter transmits something but the receiver does not get any events. Not even EVENTS_ADDRESS
Could you please let us know how to do this or provide us with examples?