This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

radio frequency

Hello! Is it fine to ready NRF_RADIO->FREQUENCY right after receipt of BLE_GAP_EVT_ADV_REPORT? Does its value have a relationship with recent adv. report?

Parents
  • NO, it is not ok to change NRF_RADIO->FREQUENCY as long softdevice is enabled. This is because RADIO is a protected peripheral and you are not allowed to read or write to its registers unless you use Timeslot API.

  • When you request a timeslot, it is not guaranteed when exactly this timeslot is allocated. You can give an acceptable range to it so that it will fail if it cannot give you a slot before that delay. No, it will not guarantee that the radio channel is not changed. Infact you should write your application assuming that all the radio registers are reset.

Reply
  • When you request a timeslot, it is not guaranteed when exactly this timeslot is allocated. You can give an acceptable range to it so that it will fail if it cannot give you a slot before that delay. No, it will not guarantee that the radio channel is not changed. Infact you should write your application assuming that all the radio registers are reset.

Children
No Data
Related