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?