CC2340R5: how can I make the beacon request sent faster using CC2340R5?

Part Number: CC2340R5


Hi
I use 2652 as the coordinator and 2340 as the node. In the factory test, I want to make the 2340 network connection faster so that we can conduct rapid tests in the factory. Are there any methods to increase the sending frequency of beacon requests? Does the end as the coordinator of 2652 need to be changed?
regards

  • Hello,

    We could try to call "bdb_start_top_level_commissioning(ZB_BDB_NETWORK_STEERING);" to start the commission process to send another beacon request.

    Thanks,
    Alex F

  • Hi,

    When steering fails there is a 10 second delay between the next retry

          case ZB_BDB_SIGNAL_STEERING:
            Log_printf(LogModule_Zigbee_App, Log_WARNING, "Steering failed, retrying again in 10 seconds");
            ZB_SCHEDULE_APP_ALARM(restart_commissioning, 0, 10 * ZB_TIME_ONE_SECOND);
            break; /* ZB_BDB_SIGNAL_STEERING */

    You can also determine the ZB_ZDO_NWK_SCAN_ATTEMPTS and ZB_ZDO_NWK_TIME_BTWN_SCANS in zb_config_common.h

    Regards,
    Ryan