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

Hello Sir I am working on the Multiprotocol example->BLE and Zigbee Template Example

Sir After Flash the code to board i am getting  some info message in teraterm

below i have attached the image of the teraterm

Refereed link:https://infocenter.nordicsemi.com/topic/sdk_tz_v4.0.0/zigbee_multi_dynamic_template_example.html?cp=7_3_3_8_4_3

Sir please help me 

  • Hello,

    The message "Zigbee signal received (signal: 7, status: -1)" is the signal ID and the status.

    Signal ID 7: ZB_BDB_SIGNAL_STEERING

    Status -1: RET_ERROR.

    I believe this just means that it hasn't connected to a Zigbee Network yet, and hence the -1 error. Then it says that it will try to connect to the network in one second.

    If you read the test description in the link that you posted, you can see that in order to test, you need to have a separate device running the CLI coordinator, so that the device has something to connect to. If you have this, the log will say:

    <info> app: Zigbee signal received (signal: 7, status: -1)
    
    <info> app: Restart network steering after 1 second (status: -1)
    
    <info> app: Zigbee signal received (signal: 7, status: -1)
    
    <info> app: Restart network steering after 1 second (status: -1)
    
    <info> app: Zigbee signal received (signal: 7, status: -1)
    
    <info> app: Restart network steering after 1 second (status: -1)
    
    <info> app: Zigbee signal received (signal: 7, status: 0)
    
    <info> app: Joined network successfully (Extended PAN ID: f4ce363a240ce3f6, PAN ID: 0xA8D1)
    
    

    This example doesn't do much, except from trying to connect to a zigbee network, and advertise with BLE, but that is what a template project is supposed to do, I guess.

    Best regards,

    Edvin

Related