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.

CC1310: Get RSSI value in CC1310

Part Number: CC1310

Gentlemen!

Sorry for bothering you.

I try to get RSSI value. I use the next commands:

static uint8_t     RSSI = 0;

...

RF_runCmd (rfHandle, (RF_Op*)&RF_cmdRxTest, RF_PriorityNormal, NULL,0);

RSSI = RF_getRssi (rfHandle);

I set RF_cmdRxTest.endTrigger.triggerType = 4,

        RF_cmdRx.endTime = 0x00010000,

in other cases the program stay forever in RF_cmdRxTest.

The RSSI value is 0x80. It is understandable - the receiver is unswitched at the time of RSSI measuring.

How can I get real RSSI value, just as in RFSmartStudio RXContinue regime?