This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Is there a 2.4G Frequency hopping Example?

Hi: When I use nRF51822's 2.4G Radio(not BLE),I want to improve anti-interference level,Make sure that all my pairs of host and device can communicate normally.

Thank you!

Parents Reply
  • @Chenyu: Channel hopping is part of the protocol. I don't have any example that only do channel hopping. But in the example (gzll_ack_payload) channel hopping is used with the channel table: NRF_GZLL_DEFAULT_CHANNEL_TABLE {4, 25, 42, 63, 77} . Please see nrf_gzll_constants.h file.

    The host moves to next channel in the table on every NRF_GZLL_DEFAULT_TIMESLOTS_PER_CHANNEL (2 in the example) timelots. Channel hopping happens regardless if there is interference or not. (not frequency agility)

    You can modify the channel hopping table using nrf_gzll_set_channel_table() command.

Children
Related