Configuring the device ZigBee rejoin parameters

The commonly changed ZigBee rejoin parameters could configured by changing the value of the Macro defined in
{PATH_TO_SDK}/Applications/Zigbee/shared/src/zigbee/ZigBeeCommissioning.cpp

  • APP_REJOIN_ATTEMPTS → the number of rejoin attempt in every rejoin attempt cycle (default value is 3)
  • APP_REJOIN_RETRY_DELAY → the duration between each rejoin attempt within one rejoin attempt cycle (default value is 3s)
  • APP_REJOIN_BASE_BACKOFF_DELAY → the backoff duration between each rejoin cycle. However, the backoff duration will be doubled for each rejoin attempt cycle, e.g. if APP_REJOIN_BASE_BACKOFF_DELAY = 20s, the duration will be set to 20s, then 40s, then 80s, etc. (default value is 60s)
  • APP_REJOIN_MAX_BACKOFF_DELAY → the maximum backoff duration between rejoin attempt cycle. (default value is 30min)
1 Like