Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Dear UserSupport,
I am currently using the Flash Driver for the YTM32B1LE05 MCU. I need to verify if a specific address has been written to. Could you please let me know if there are any support APIs available for this purpose, such as FlashDrv_BlankCheck?
Many thank in advance.
You can only use a pointer to check if the content is 0xFFFFFFFF. like:
bool check_sector_empty(uint32_t* sector, uint32_t sector_bytes_size) { for (uint32_t i = 0; i < sector_bytes_size / 4; i++) { if (sector[i] != 0xFFFFFFFF) { return false; } } return true; }
帮助没办法联网的电脑使用YCT
帮助改进和优化YT CONFIG TOOL,有机会抽取YTM32B1ME0 EVB哦...