This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Z-Stack Transmit Power Configuration CC2530+CC2591 Backwards..

Other Parts Discussed in Thread: CC2591, CC2530

Hi all,

I'm working with a Zigbee network using CC2530 + CC2591 as ZEDs, ZRTs and a ZCO.

When I configure the TX power with "MAC_MlmeSetReq(MAC_PHY_TRANSMIT_POWER,&txpower)", it looks like the configuration values on the table are backwards, because I have more TX power with a lower value.

This is the configuration code: 

#ifdef HAL_PA_LNA
   uint8 txpower= 0x55;
#else
   uint8 txpower= 0xF5;
#endif

MAC_MlmeSetReq(MAC_PHY_TRANSMIT_POWER,&txpower);

Is this normal?

Did anyone see this behavior too?

Thanks!