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.

CC3220MOD: WiFi Signal Strength

Part Number: CC3220MOD

Dear Team TI,

I would like check signal strength of WiFi module CC3220 in coding.

Is it possible to calculate strength of module in C code (any SFR).  

Thanks & Regards,

Mubin Q.

  • Hi,

    To GET RSSI you can use this code:

    SlWlanGetRxStatResponse_t rssiRxStat;
    int rssi = -99;
    
    if (sl_WlanRxStatGet(&rssiRxStat, 0) == 0) {
      if (rssiRxStat.AvarageMgMntRssi != 0) {
        rssi = rssiRxStat.AvarageMgMntRssi;
      }
    } else {
      rssi = -99; // error
    }

    Jan