Looking for example of updating two separate screens based on simple systick and RTOS queue messages
I have an application with two separate screens. I have declared completely analogous presenter, view, etc. files for each, understanding that the model points to the current presenter to update the current view/screen. All functions and variables appear where they should in the hpp and base class files for each view. The trigger for all updates is the system tick, handled in the model file; the systick just checks for RTOS messages in separate queues and requests screen updates accordingly. And, the model file "knows" about all boxes on all pages. Everything on screen 1 (the home screen) works fine, but nothing on screen 2 will update. So, I am looking for some example of how to do this. Clearly, I am missing something, but I can't see it. I am running GFX v4.14.0 under RTOS, Cube IDE v1.5.0. Thanks