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.

CC3200MOD: CC3200MOD

Part Number: CC3200MOD
Other Parts Discussed in Thread: CC3200SDK

Hi Murgesh And Michael,

Can u please share your code for getting its MAC ID . I shall be Highly oblized

Thanks & Regards,

Thakur

  • Hi Thakur,

    You can use this code:

    _u8 macAddressVal[SL_MAC_ADDR_LEN];
    _u8 macAddressLen = SL_MAC_ADDR_LEN;
    sl_NetCfgGet(SL_MAC_ADDRESS_GET,NULL,&macAddressLen,(_u8 *)macAddressVal);

    More information you find in SDK ( CC3200SDK_1.3.0/cc3200-sdk/docs/simplelink_api/html/group__netcfg.html#ga86e2fc6c2fca5d8537529b612fb7ebe4 ).

    Jan