2020-07-03 3:29 AM
2020-07-03 3:44 AM
Hi,
I suspend TouchGFX task in RTOS:
osThreadSuspend(defaultTaskHandle);
I don't know if it is the best way, but it works.
2020-07-03 4:12 AM
I tried this method but it crashed
2020-07-03 2:13 PM
NVIC_DisableIRQ(LTDC_IRQn);
(For LTDC setup). This stops the "tick" and TouchGFX Engine will wait on a semaphore until the interrupt is enabled again.
2020-07-06 6:32 PM
Using this method results in programs executing only OSWrappers::signalVSync();.Semaphore is not executed, resulting in modle: tick () not being executed
2020-07-06 11:55 PM
Correct :) That's "stopping" touchgfx in my mind. You want something else? Go into low power mode?
2020-07-07 6:15 AM
Yes, I want to use low power mode.