2021-06-07 09:21 AM
Hello,
How can I send data from touchGFX screen to main task? I have action on click button which calculate me data, but I'm not sure how can I send calculated data to my main program.
Solved! Go to Solution.
2021-06-10 01:21 PM
You may find this tutorial interesting:
2021-06-07 11:11 AM
How are you running TouchGFX? Are you using any OS? How did you create your multiple tasks?
2021-06-07 03:32 PM
I'm using FREERTOS CMSISv2 (auto generated program in designer for my stm). I have task where I send data via queue to Model in touchgfx. I have data in model and on my screen, but I want send them back to main core of application. I'm not sure how to do it. Should I make queue to main like I did queue to main or what?
2021-06-09 02:12 AM
That's what I would do, yes.
There is a chapter on queues in the RTOS manual.
2021-06-10 01:21 PM
You may find this tutorial interesting:
2021-06-10 01:53 PM
I was doing it with this tutorial before and wanted to return it, but I did second queue which return data :). Thank you so much for help