Posted on February 02, 2016 at 16:52
I have an 800x600 pixels RGB565 image stored in the SDRAM of my STM32F7-discovery board starting at memory address 0xC0390000.
What I want to do is saving this image to an SD card.
The code for this is a...
Posted on February 03, 2016 at 10:05Thank you for the reply. Making the buffer static solves it, but I do not really understand why. I understand that the corresponding memory is reserved just once at the first function call, but how does this prev...