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

mesh Configuration

The relay successful rate of my Mesh setup is not 100%. I think light server miss packet from light client. I have tried to change configuration following:

1  #define BEARER_SCAN_INT_DEFAULT_MS 700 (default 2000) ;

2 #define BEARER_SCAN_WINDOW_DEFAULT_MS 700 (default 2000) ;

But it seems performance no much difference. May consult how to optimize Radio configuration in order to scan 37, 38, 39 channels fast effectively?

Thanks

MK Chen

Parents Reply Children
  • Okey, my understanding is that you will not relay those message with very low RSSI to avoid network traffic. This is fine but it will reduce the redundancy capability of the network. 

    To do this you can have a look at network_packet_in() inside network.c, you can find RSSI inside p_rx_metadata->scanner.rssi. Then you can choose to do packet_relay() or not. 

Related