2021-12-08 04:37 AM
TouchGFX 4.18.1 is now online.
Release notes (which can be found in the online documentation) are as follows:
You can find the post for the release of TouchGFX 4.18.1 and its questions here. Please continue commenting on what could be missing or to report bugs.
Reminder of the TouchGFX 4.18.0 release notes:
2022-02-28 11:59 PM
Is there estimated release time for 4.19 version?
We need "Base view" ASAP. Waiting for 2 years now.
https://community.st.com/s/question/0D50X0000CBl27ZSQR/add-an-interaction-to-all-screens
2022-03-16 07:44 AM
Solved.
When I tried this video for a STM32F767 MCU, and I enabled the hardware jpeg, and the generated code will run into hardware fault.
in __sti___24_TouchGFXGeneratedHAL_cpp_db822bdb, it will call HardwareMJPEGDecoder::HardwareMJPEGDecoder
and then call osSemaphoreCreate, but at this time, the rtos is not yet initialized, you can find my configuration in below, and let me know your comments if you have ,thanks.
2022-03-18 01:42 PM
Just started a new project (based on stm32h7b3 dk) with gfx designer, opened it with the ide, compile once and it worked. at the second time code was generated with the designer the file "Screen1ViewBase.hpp" added a sign and cant be compiled (you can cancel the read only and fix it), it because a comma was added to the file:
#include <touchgfx/widgets/Image.hpp>
#include <touchgfx/widgets/ButtonWithLabel.hpp>
#include <touchgfx/widgets/TextArea.hpp>
` //HERE THERE IS A COMMA!!!
class Screen1ViewBase : public touchgfx::View<Screen1Presenter>
{
public:
2022-03-19 01:59 PM
Somehow problem solved, but i'm still have a hard time adding the generated source to the stm32 ide. the ioc file location is not correct and the ioc name is not correct and after generating the IOC from the ide there are compiler errors... if there is updated video/presentation/guide I will really like to have a link shared, Thanks.