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

Debugging Relay Node operation in Mesh network

Hi All,

I am testing the performance of a Relay Node in a mesh network.However it seems don't work.

I would like to show that the Relay node operation such as Rx and Re-TX message . Where is the location to indicate the operation in the code, I may add __log to debug the operation.

Thanks

Dragon

Parents
  • Hi Terje

    Thank you for your reply, our project is based on the example Light_switch_server and we added the model onoff_switch_client  to the project.

    attached picture is the testing structure.

    1) we limited the TX-power to -40dbm to limited the testing space.

    2) the distance between the node1 and node 2 about 30cm . and the distance between the node2 and node 3 about 30cm

    3) the message flow is that:

    i) connected the node1( always send unicast address to the connected node)

    ii) We modified the payload of the mode OnOff_server, that the payload included the target node address.

    iii) App send the message ( genericOnOfftset ) to unicast address node1 , and the data of the message point to send to node 3.

    iv) when the node1 (connected node) received the message, it will publish the message to node3(pointed form message)

    4) we add the __Log on the code before packet_relay and in the should_relay()

    #if MESH_FEATURE_RELAY_ENABLED
            if (should_relay(&net_metadata))
            {
               __LOG(LOG_SRC_APP, LOG_LEVEL_INFO, "Relay (packet_relay)  ,ttl:%d \n",net_metadata.ttl);
                packet_relay(&net_metadata, p_net_payload, payload_len);
            }
    #endif

    static bool should_relay(const network_packet_metadata_t * p_metadata)
    {
        /* Relay feature must be enabled */
    #if EXPERIMENTAL_INSTABURST_ENABLED
        if (!core_tx_instaburst_is_enabled(CORE_TX_ROLE_RELAY))
    #else
        if (!core_tx_adv_is_enabled(CORE_TX_ROLE_RELAY))
    #endif
        {
          __LOG(LOG_SRC_APP, LOG_LEVEL_INFO, "should_relay 1\n");
            return false;
        }
        /* TTL must be 2 or greater */
        if (p_metadata->ttl < 2)
        {
           __LOG(LOG_SRC_APP, LOG_LEVEL_INFO, "should_relay 2:%d\n",p_metadata->ttl);
            return false;
        }

    5) we found some case today, and we take the log on Node2 with j-link.

       i) when the node1 publish to node 3. It seems work for relay node. and  it will log some message when there is packet_in:

         Relay (packet_relay)  ,ttl:4 

    of Relay (packet_relay)  ,ttl:8 

       it seems the ttl will be 4 and 8 if the relay function work.

    ii) when the node3 publish to node 1. It seems don't work for relay node. and  it always log the message as follow when there is packet_in

       should_relay 2:1

      it seems the ttl always 1.

    best Regards,

    Dragon

      

       

  • Hi,

    You can configure what TTL should be used. There are both a general setting for the node, and a setting for publications from the particular model. Both of these are easily configured from the nRF Mesh app, if that is what you use for provisioning and configuration.

    Regards,
    Terje

  • HI Terje , 

    There is a strange behavior on a Relay node.

    I connected the testing relay node with a J-Link and use the RTT viewer to view the __log form the relay node. 

    If I connect the RTT viewer software with the node, it is work for the Relay node. 

    If I disconnect the RTT viewer software with the node, it is show ACCESS_RELIABLE_TRANSFER_TIMEOUT "Acknowledged transfer timeout".

    Regards,

    Dragon

  • HI,

    I tried to monitor the network_packet_in on the Relay node(ID 7). 

    I tried to changed the publish TTL value (e.g 127) on client (ID 1) and I tried to publish reliable to client (ID 3), 

    the Relay node (ID7) show the TTL value of packet (ID 1 to ID2) was 127, but the TTL value of packet (ID2 to ID1) was 8 or 4. 

    and Found the TTL value of packet ( ID id 1 to  0x7fff)  always 4.

    Regards,

    Dragon

  • Hi,

    You mention a lot of nodes. Please note that the publish settings are distinct on each model, on each element. That means you must configure each model individually, setting both publish address and TTL setting.

    Also, what packet types are the packets that you mention?

    Regards,
    Terje

  • Hi Terje,

    1) I simplified the data payload from 40 to 7, that let the network packet form 4 segment to a un-segment data packet. The performance seems better.

    2) But when I put the target node D1 far away form the Proxy node D2. And I place the relay node D3 between the D1 and D2.   

    e.g.. APP <-> Proxy(D1) <-> Relay(D3) <-> Target(D2) 

    I monitor the rx packet on the Relay D3. It don't receive the packet (D1-> D2) or (D2<-D1)

    3) When I  tried to modify the following values, the performance of the relay seems better, that no lost packet.

    CORE_TX_REPEAT_ORIGINATOR_DEFAULT 100

    CORE_TX_REPEAT_RELAY_DEFAULT 100

    4) I am not sure how the effect of the timing (Repeat 1 or 100) e.g. scanning and advertisement.

    or any document figure out the setting and timing e.g interval, scanning windows re-transimit, repeat?

    5) And the response time seems slow when send reliable set  and get back status. It is about 4s. How the speed up the response time?

    Regards,

    Dragon

  • Hi,

    The more repeats, the more time the nodes use for repeating the message, and thus the less time they will be listening for other packets on the network. 100 is a very high value, a reasonable value would be only a few repeats, maybe as many as 5 but usually less.

    Proxy nodes spend some time for BLE connections and advertising. We have tuned the proxy node connection settings such that they should use minimal time away from normal mesh operation, while still providing a good connection for the GATT based device.

    Four seconds sounds like a long time. As you monitor node D3 and do not see any packets relayed there between D1 and D2, I assume the TTL settings for the packets sent are 1. E.g. only the packets that can still be heard directly between D1 and D2 receive at their destination. If those devices are close to the edge of radio range of each other, few packets will arrive successfully. That means you need a lot of repeats from the originator and it will take quite some time to get messages across.

    Typically ACCESS_DEFAULT_TTL (which is the setting for default TTL) is defined in nrf_mesh_config_app.h for each example. This can be overridden by configuration by the provisioner. For your example, TTL should be at least 2.

    Regards,
    Terje

Reply
  • Hi,

    The more repeats, the more time the nodes use for repeating the message, and thus the less time they will be listening for other packets on the network. 100 is a very high value, a reasonable value would be only a few repeats, maybe as many as 5 but usually less.

    Proxy nodes spend some time for BLE connections and advertising. We have tuned the proxy node connection settings such that they should use minimal time away from normal mesh operation, while still providing a good connection for the GATT based device.

    Four seconds sounds like a long time. As you monitor node D3 and do not see any packets relayed there between D1 and D2, I assume the TTL settings for the packets sent are 1. E.g. only the packets that can still be heard directly between D1 and D2 receive at their destination. If those devices are close to the edge of radio range of each other, few packets will arrive successfully. That means you need a lot of repeats from the originator and it will take quite some time to get messages across.

    Typically ACCESS_DEFAULT_TTL (which is the setting for default TTL) is defined in nrf_mesh_config_app.h for each example. This can be overridden by configuration by the provisioner. For your example, TTL should be at least 2.

    Regards,
    Terje

Children
No Data
Related