Hi,When I set the clock source of SYSCLK to HSI, I can get the 1 ms timer from TIM2. However, when I set the source of SYSCLK to PLLCLK, I can't get 1 ms timer from TIM2. Why? (The MCU is STM32F407VETx) I would appreciate any help. *Edit : The proble...
Hi,I have 4 screens for my program. Everything works in O0 optimization. However I noticed that there was a problem about the screen that has a video in Ofast optimization. Just to be sure, I removed the video and everything works fine again. When I ...
Hi,My program works with gcc compiler optimization Ofast and g++ compiler optimization Og without any problem in STM32CubeIDE. I also use -fno-builtin-memcpy and -fno-builtin-memset. However, when I change g++ compiler optimization to Ofast, my code...
Hi,I have a opening screen and when the video is over, I want that to slide next screen. However, when it is over, first frame appears. When I realized it, I tried to learn what is the last frame, but I couldn't. So, How do I obtain the last frame?
This is protected part of Drawable class:protected:
Rect rect; ///< The coordinates of this Drawable, relative to its parent.
/// @cond
Rect cachedVisibleRect; ///< Cached representation of currently visible area. For TouchGFX internal us...
For example, we add "int AddRegister" to touchgfx::Drawable class, it works in simulator but doesn't work on device. A little changing in touchgfx classes, doesn't work on device.
Hi, I want to make a gui template for TouchGFX 4.17.0. Before this version following this link https://support.touchgfx.com/docs/development/scenarios/scenarios-create-at , instead of TGAT, I wrote TGUI and it worked. However, I'm doing same thing ...