cancel
Showing results for 
Search instead for 
Did you mean: 

How TouchGFX access the non memory map area?

Junde
Senior II

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!

 

1 ACCEPTED SOLUTION

Accepted Solutions
t.decker
Senior II

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

When this account seems to be inactive, try @tdecker2 - ST can't change mail addresses, so I had to create a new account.

View solution in original post

2 REPLIES 2
t.decker
Senior II

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

When this account seems to be inactive, try @tdecker2 - ST can't change mail addresses, so I had to create a new account.

@t.decker 

Thank you for your infoumation!