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?