In the case of my application all the code is executed on the MCU flash,only the touchgfx data and configuration data of my application are saved on the QSPI external flash.I use image and text data from the lcd on external flash and eventually need ...
Two Functions are required:/* USER CODE BEGIN PFP */void MyDisableInterrupt(void){NVIC_DisableIRQ(DMA2D_IRQn);NVIC_DisableIRQ(LTDC_IRQn);}void MyEnableInterrupt(void){NVIC_EnableIRQ(DMA2D_IRQn);NVIC_EnableIRQ(LTDC_IRQn);}/* USER CODE END PFP */I crea...
My case is similar to the one described above. And just call: void TouchGFXHAL::disableInterrupts(), then change qspi to normal mode. After writing the data, go back qspi to mapped mode and then call: void TouchGFXHAL::enableInterrupts() and everythi...