Hi,
I'd like to trigger an event on a target F28069 based device by clicking on a button in my GUI (developed using GUI composer). Specifically, I'd like to be able to handle a GUI panel OnClick or OnDblClick event on my target device by somehow getting code in a target side monitor to handle/dispatch the button click event and call one of my firmware functions.
However, the GUI Composer documentation does not provide any information on any target-side monitor capabilities to trigger function calls if they exist. Perhaps this is only available with a UART stream model but not the JTAG model. So I am left with an alternative approach of manually having to generate target events by polling the value of a boolean variable on a timer tick to see if its value has changed from a snapshot of the previous value, and if so then call my event handler function to process the changed state of the boolean value.
Am I missing something here, or is polling my target-side variables for changed values or updates the only way to synthesize events which arise from a user interacting with a GUI dialog?
Gord