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.
您好,我在阅读flash_API例程的过程中,这些API的功能是什么,Flash_Program(a,b,c,d)是写b到flash吗?Flash_Verify(a,b,c,d)是读取数据到b这个缓冲区吗?
#if FLASH_F28335 #define Flash_Erase(a,b) Flash28335_Erase(a,b) #define Flash_Program(a,b,c,d) Flash28335_Program(a,b,c,d) #define Flash_Verify(a,b,c,d) Flash28335_Verify(a,b,c,d) #define Flash_ToggleTest(a,b) Flash28335_ToggleTest(a,b) #define Flash_DepRecover() Flash28335_DepRecover() #define Flash_APIVersionHex() Flash28335_APIVersionHex() #define Flash_APIVersion() Flash28335_APIVersion()
这些关于功能的问题,建议可以先看看API函数的说明文档:C:\ti\c2000\C2000Ware_4_00_00_00\libraries\flash_api\f2833x\28335\docs,里面有详细说明各个函数的作用和用法等等