Hello!I made the project for a custom SPI display with configuration like screenshot below: Added in main.c:void StartDefaultTask(void const * argument)
{
/* USER CODE BEGIN 5 */
MX_TouchGFX_Process();
/* Infinite loop */
for(;;)
{
osDe...
Seems got any debbuger issues. OSWrappers::signalVSync called without any problems.But why do void TouchGFXHAL::flushFrameBuffer(const touchgfx::Rect& rect) and Screen1View::setupScreen() not called? I wish implement custo driver in flushFrameBuffer ...
Ok, I moved TouchGFX_TickHandler to HW timer TIM7_IRQHandler.OSWrappers::signalVSync is called 2 times now. And TIM7_IRQHandler stop called. That is too strange.void TouchGFXHAL::flushFrameBuffer(const touchgfx::Rect& rect) and Screen1View::setupScre...
I used this manual and STM32L496-DISCO Application template. Should I use only 1 call (OSWrappers::signalVSync or MX_TouchGFX_Process)? I used TouchGFX_TickHandler because display haven't got TE pin.OSWrappers::waitForVsync() never returns.