CC2652R7: MIN_LQI_COST values question

Part Number: CC2652R7
Other Parts Discussed in Thread: Z-STACK

Tool/software:

Hi 

We have found out that MIN_LQI_COST values mentioned in this thread 

https://e2e.ti.com/support/wireless-connectivity/zigbee-thread-group/zigbee-and-thread/f/zigbee-thread-forum/1094338/cc2652p-lqi-to-link-cost-mapping

are still present in current SDK (8.30.01.01)

Fullscreen
1
2
3
4
5
6
7
8
// LQI to Cost mapping
#define MIN_LQI_COST_1 12 //24
#define MIN_LQI_COST_2 9 //20
#define MIN_LQI_COST_3 6 //16
#define MIN_LQI_COST_4 4 //12
#define MIN_LQI_COST_5 2 //8
#define MIN_LQI_COST_6 1 //4
#define MIN_LQI_COST_7 0 //0
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX


 
there was suggestion to change those to:
Fullscreen
1
2
3
4
5
6
7
8
#define MIN_LQI_COST_1 64 //192
#define MIN_LQI_COST_2 32 //128
#define MIN_LQI_COST_3 16 //96
#define MIN_LQI_COST_4 12 //64
#define MIN_LQI_COST_5 8 //32
#define MIN_LQI_COST_6 4 //16
#define MIN_LQI_COST_7 1 //1
#define MIN_LQI_COST_0 0 //0
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

can we change those lqi costs according to our needs? 

Best regards

Bartosz