Question
Where should GPIO set and clear functions be called in TouchGFX
I understand that when the gpio set/clear functions are called, it's possible to check the values of VSYNC_FREQ, RENDER_TIME, FRAME_RATE, and MCU_ACTIVE.
- Where is RENDER_TIME called? While I have confirmed that VSYNC_FREQ is explicitly called in HAL_LTDC_LineEventCallback, RENDER_TIME seems to be called by the library, and I am uncertain about the specific calling location.
- Where should FRAME_RATE and MCU_ACTIVE be called? It appears that FRAME_RATE and MCU_ACTIVE are not called automatically, so the user may need to specify the calling location. Can Frame rate be placed in TouchGFXHAL::beginFrame and TouchGFXHAL::endFrame?
