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.

CC2640R2F: CC2640R2 RSSI

Guru 13485 points
Part Number: CC2640R2F


Got below question:

I am reading the RSSI value. (raw_rssi_value)

The received value is in 2`s complement.

 How do I convert it to dBm?

 I was thinking of the following:

 rssi_val is signed value 

in C code:

 rssi_val = -97 + ~(raw_rssi_value) -1;

Is it correct?