User Activity

The change in the generated code is in TouchGFXConfiguration.cpp touchgfx_taskEntry().Before the update it called OSWrappers::waitForVSync();Now it calls if (OSWrappers::isVSyncAvailable()) {  hal.backPorchExited(); }which does not reset vsync_sem in...
I am working on a project with TouchGFX on STM32H7 with 240x320 RGB Display. Framebuffer is in internal RAM.I calculated the RGB565 framebuffer size to 240x320x2 bytes and allocated this amount in the linker file with "TouchGFX_Framebuffer" atttribut...