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.

CC3135: Obtaining MAC and/or Serial Number from the CC3135

Part Number: CC3135

Hi We are using CC3135 on our board. Using the Simple Link Host Driver SDK running on the host.

We are reading the version of the device at bootup using sl_DeviceGet() function. Now we need to get the MAC address and Serial from the CC3135.

Is there any way to get the MAC and Serial number from the chip?

  • Hi,

    MAC address you can read via API sl_NetCfgGet():

    _u8 macAddressVal[SL_MAC_ADDR_LEN];
    _u16 macAddressLen = SL_MAC_ADDR_LEN;
    _u16 ConfigOpt = 0;
    sl_NetCfgGet(SL_NETCFG_MAC_ADDRESS_GET,&ConfigOpt,&macAddressLen,(_u8 *)macAddressVal);

    You can read Unique ID by way described here.

    Jan