本帖最后由 archiew 于 2019-3-18 11:45 编辑
// 测试代码
FLADDR start_address = 0xF000;
U8 test_byte;
test_byte = FLASH_ByteRead(start_address);
FLASH_PageErase(start_address);
FLASH_ByteWrite(start_address, test_byte+1);
test_byte = FLASH_ByteRead(start_address);
|