User Activity

I'm working with the STM32F769I-DISCO board.I initialized a timer with an interrupt in main.cpp and I put an infinite while(1) loop before all the TouchGFX graphics initialization functions. The interrupt works fine, toggling an LED every second.Howe...
EDIT:The main problem here is the initialization of the RTC clock.Is there known problems with initializing the RTC clock within a TouchGFX project?I'm having no luck with initializing the RTC in the context of TouchGFX.ORIGINAL POST:I'm working with...
I am working with the STM32F769I-Disco Board and I'm having trouble figuring out how to control the display.When I put the device is standby mode, the display does not power down. Is this normal? I have been trying to power down the display manually,...
I'm trying to use a function from a .c file (that I am trying to add to my project) in another .cpp file (touchGFX project screen.cpp), I included the header file, but I get an "undefined reference" error. I have figured out that this is a linking er...
I am getting compiling errors when trying to include a custom class into a TouchGFX project.I made a class called "test" with it's test.h and test.cpp components.//File: test.h   #pragma once class test { public: test(); ~test();   void s...