预备:
DSP程序运行起点 _c_int00,该函数由静态链接库定义,负责DSP的部分初始化,可认为是整个程序的起点。
Flash API库函数
Erase Function
函数原型 (Defined in Flash280x_API_Library.h)Description: The Erase function will erase the specified flash
sectors. The remaining sectors will not be changed.extern Uint16 Flash2806_Erase(
Uint16 SectorMask, // Sector mask
FLASH_ST *FEraseStat // Pointer to the status structure
};
- Program Function
函数原型(Defined in Flash280x_API_Library.h)
extern Uint16 Flash2806_Program(
Uint16 *FlashAddr, // 指向写入的flash或otp地址
Uint16 *BufAddr, // 指向写入内容地址
Uint32 Length, // 写入长度()
FLASH_ST *F