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 flash读取程序 数据改变后读出来的数据还是相同的

void FlashRead(uint8_t *pui8DataBuffer, uint32_t ui32Address, uint32_t ui32Count) {// 读取的数据存储 读取的起始地址 读取数据的长度
auto uint8_t *pui8ReadAddress = (uint8_t *)ui32Address;// 把要读取的地址给一个指针 通过指针获取数据
while (ui32Count--) {
*pui8DataBuffer++ = *pui8ReadAddress++;
}
}