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
  • Hi Chen, 

    What is the success rate do you have ? 

    Do you have any retransmission for a packet you send ? In our example (light_switch) we have APP_UNACK_MSG_REPEAT_COUNT  = 2 

    Changing BEARER_SCAN_INT_DEFAULT_MS  and BEARER_SCAN_WINDOW_DEFAULT_MS  wouldn't help since we already scanning at 100% 

    Regarding RSSI filtering, you can filter after the message arrived in access layer, but not in the radio or in network layer.

Reply
  • Hi Chen, 

    What is the success rate do you have ? 

    Do you have any retransmission for a packet you send ? In our example (light_switch) we have APP_UNACK_MSG_REPEAT_COUNT  = 2 

    Changing BEARER_SCAN_INT_DEFAULT_MS  and BEARER_SCAN_WINDOW_DEFAULT_MS  wouldn't help since we already scanning at 100% 

    Regarding RSSI filtering, you can filter after the message arrived in access layer, but not in the radio or in network layer.

Children
Related