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.

CC1310的MAC address存储和读取

Other Parts Discussed in Thread: CC1310

TI工程师您好:

在设计CC1310时,有几个关键参数需要存储在 MAC address里面,对应程序如下:

 uint32_t addr = 0;
    uint8_t num[4] = {0x55,0x34,0x56,0x78};
    addr = HWREG(0x50003FC8);
    FlashProgram(num, 0x0001FFC8, 4);
    addr = HWREG(0x50003FC8);

我发现写入的地址和读取的地址不同,这个是如何映射的。

上面也只是在读和写,如果原先不是0XFFFFFFFF,则需要擦除,请问该如何操作?擦除的空间是多大。谢谢您!