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.

CC2540 RSSI value extract

Other Parts Discussed in Thread: CC2540

Hi

I using IAR workbench for development of cc2540 ble . I want display rssi value cc2540KEYFOB on terminal window .

This is sample code

static void simpleBLECentralRssiCB( uint16 connHandle, int8 rssi )
{
  int8 x;
  x = rssi;

}

I used printf(x) for display  "x" , but it not display x value on terminal window.
 There is any other function or alternative option.