2020-04-24 10:03 AM
Hi!
How to set FreeRTOS for 2 tasks and queue 2?
How to add support in main.c and Model.cpp?
Andrzej
2020-05-09 04:15 AM
As far as concern of your code, I think you have missed like below
// From Model
void Screen1Presenter::btnPressed()
{
view.IncrementUpdate() ;
touchgfx_printf("View \n");
}
// From View
void Screen1Presenter::setLEDState(bool state)
{
model->setLEDState(state);
touchgfx_printf("LED State:1 %d\n", state);
}
Hope this helps..
--
Karan