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:从 CC3135获取 MAC 和/或序列号

Guru**** 2393725 points
Other Parts Discussed in Thread: CC3135

请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/wireless-connectivity/wi-fi-group/wifi/f/wi-fi-forum/879874/cc3135-obtaining-mac-and-or-serial-number-from-the-cc3135

器件型号:CC3135

大家好、我们在板上使用 CC3135。 运行的 Simple Link 主机驱动程序 SDK。

我们正在使用 sl_DeviceGet ()函数在启动时读取器件版本。 现在、我们需要从 CC3135获取 MAC 地址和串行。

是否有任何方法从芯片获取 MAC 和序列号?

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    您好!

    可通过 API sl_NetCfgGet ()读取的 MAC 地址:

    _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; 

    您可以通过 此处所述的方式读取唯一 ID

    1月