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.

使用halFlashread write等,调试时通过调试窗口怎么看write数据是否写的正确。



比如:使用

HalFlashErase(0x40);while( FCTL & 0x80 ); // wait for erase to complete
HalFlashWrite(0x8000, buff, 30);
HalFlashRead(0x40, 0x0000, buff, 30);后,我能不能在调试窗口查看我写的数据是否正确?

我halFlashwrite之后,我通过调试窗口查看,我怎么感觉不对啊。。

但是我用halFlashread 能够读出来是我写的数据。

请问怎么查看数据啊。。