2024-04-16 06:18 PM
Hi there,
I have a GUI demo of TouchGFX on my STM32F429BI board, and it works well when the image is stored in the inner flash.
But when I stored the image external Nand-flash by FMC, it could NOT work.
It's said that the Nand-flash extended by FMC can't be accessed by memory map mode so that I can get the image data by the API HAL_NAND_Read_Page_8b(), yes?
But how to modify the TouchGFX to get the image data by HAL_NAND_Read_Page_8b()?
Thank you!
Solved! Go to Solution.
2024-06-19 01:08 AM
Have a look at the
bool TouchGFXHAL::blockCopy(void* RESTRICT dest, const void* RESTRICT src, uint32_t numBytes)
function described here in detail: https://support.touchgfx.com/docs/development/scenarios/using-non-memory-mapped-flash
2024-06-19 01:08 AM
Have a look at the
bool TouchGFXHAL::blockCopy(void* RESTRICT dest, const void* RESTRICT src, uint32_t numBytes)
function described here in detail: https://support.touchgfx.com/docs/development/scenarios/using-non-memory-mapped-flash
2024-06-19 06:17 PM
Thank you for your infoumation!