2020-07-01 09:33 AM
Hello to everyone,
I was able to add a backend communication from a screen to other FreeRTOS task with a queue message and now I try the other way from the other task to the screen/view.
I add all the parts from the TGFX support site backend-communication to the model and so on, but I'm not able to access to this specific text area (wildcard) because it's a "protected member" of the custom container class.
Maybe it's just a easy problem but because of my poor C++ knowledge I don't find a solution for this problem.
How I get access to a protected custom container member (text area) which is placed on a screen?
Maybe someone can help me with some hints or code snippets.
Thank you in advance.
Solved! Go to Solution.
2020-07-03 01:08 AM
Try moving the implementation of the notifyTemperatureChanged() function to the cpp-file.
mainScreenPresenter.hpp:
mainScreenPresenter.cpp:
/Thomas
2020-07-03 02:15 AM
Wuhuu, it works now!!
Thank you so much for your help Thomas.
2020-07-03 02:23 AM