Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob

To read the RSSI value

lock attach
Attachments are accessible only for community members.

To read the RSSI value

Anonymous
Not applicable
Question: How to read RSSI value ?

 

Answer:

In order to read the value

Add the following line after the radio is initialised. RadioGetRssi() API returns the value of RSSI.

// Insert below code

BYTE rssi;

rssi =  RadioGetRssi();  //get rssi

Display the contents on an LCD. Please find the attached code example which does the same (Look for the above lines in main.c ).

Attachments
0 Likes
727 Views
Contributors