This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

RSSI value of 127?

Hi All,

Sanity check here.  I'm reading the RSSI value from a received packet

if (nrf_esb_read_rx_payload(&rx_payload) == NRF_SUCCESS)
{
    if (rx_payload.length > 0)
    {
        i8WMSB_RSSI = rx_payload.rssi;
        esb_received_data = true; // we don't want to do much in this interrupt service routine. We will process data in main or elsewhere.
    }
}

Every so often I'm getting a value of 127.  Does this mean anything?   (I'm looking through my code to see what might be causing that but wanted to check.)

thanks!

Bob

Related