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.

CC2530 的NV存储器的多字节的连续读写问题

使用的是ZStack-CC2530-2.3.0-1.4.0协议栈

先对NV存储器的需要使用的空间进行初始化:  osal_nv_item_init(TEST_NV,256,NULL);  

然后我对对其中的某一位进行单个字节的存储和读取:osal_nv_write(Num,0,1,&Number); //Num 已经定义为0x0205

这个操作都正常,可以正常写入和读取

然后我想将一个数组存入NV存储器中:osal_nv_write(Num,0,4,Number);//其中Number[4]

然后发现存储的回调数值是:NV_OPER_FAILED

求分析原因!

多谢各位!!!