2024-03-13 08:05 AM
I'm using TouchGFX with an RTOS.
How can I shutdown TouchGFX, so that my RTOS is still running? This would require to exit from HAL::taskEntry().
Solved! Go to Solution.
2024-03-13 08:24 AM
Hello,
Maybe you need to use osThreadTerminate (osThreadId_t thread_id) to kill TouchGFX task?
2024-03-13 08:24 AM
Hello,
Maybe you need to use osThreadTerminate (osThreadId_t thread_id) to kill TouchGFX task?
2024-03-14 09:37 AM
Thanks for your fast reply. I can do it by terminating the task.
Just for the record: at least it's necessary to call HAL::disableInterrupts() on shutdown.