2019-05-17 01:52 AM
Hi all
I want to know where should I use QSPI function?
TouchGFX has initialized QSPI but it doesn't call
For my demo project my STM32H743eval LCD only on
But image not showing.
How to solve this?
2019-05-20 06:42 PM
Hi Martin
You mean STM32H7DMA.cpp
But I don't find fillRect() function
So I need to include which header file to use fillRect() function?
You mean I can use DMA to draw the photo in my QSPI?
2019-05-21 01:56 AM
Yes.
I mistyped, i meant "setupDataCopy()" which copies to fb from memory, and then you have setupDataFill() which fills an area in the framebuffer with the same data (e.g. a color).
/Martin
2019-05-21 02:17 AM
Hi Martin
You mean these two functions can check QSPI External flash section and compare with .map file to see data correct is just check QSPI data
Or these are reasons for my project can't load QSPI
2019-05-21 02:21 AM
Hi,
Let me be more clear. Break inside the setupDataCopy() method - have 1 simple image on your application. The BlitOp argument will have a source pointer - If you correlate this address with the image address from your map file you will know it is pointing to the right image.
Then i would check DMA registers to see if there are any transfer errors if you do not see the image on screen.
Does that make sense?
/Martin