Is there any way to change Touchgfx Designer timebase for transitions?
Hello, I have realized that any transition that happens over a defined time gets generated on a time basis of 16.6667 ms per tick. For example a simple wait transition will get:
//Delay for 3000 ms (180 Ticks)
interaction_wait_a_bitCounter = INTERACTION_WAIT_A_BIT_DURATION;
This tick counter is decreased on each model.tick() as I understand, but if the tick timebase happens to have a different period, times does not match.
I am currently using a SPI display that doesnt have the tearing effect pin available (yet) so i am calling OSWrappers::signalVSync(); each 16ms under SysTick_Handler() (1ms) to simulate 60hz.
With this configuration timings are as expected, but as soon as I modify the OSWrappers::signalVSync() calling frequency, transitions accerlerate or deccelerate proportionally.
Is this the expected behaviour or am I understanding all wrong?
Is it possible to change the divider that touchgfx designer uses for calculating the delay counters, or is assumed to be working with 60hz displays always?
Thanks a lot,
David