User Activity

I've got the following interrupt configured for TIM4:void TIM4_IRQHandler(void) { if ( LL_TIM_IsActiveFlag_UPDATE( TIM4 ) ) { LL_TIM_GetDirection( TIM4 ) == 0 ? ++x : --x; LL_TIM_ClearFlag_UPDATE( TIM4 ); } }I know this interrupt is bei...
I have a Touch-GFX project that I can program into an STM32H7B3I-DK from within the STM32CubeIDE.However, trying to program the same board with the project's .elf file from STM32CubeProgrammer fails with:16:20:21 : Memory Programming ... 16:20:21 :...
When I try to "Program and Run Target" I get the following in the log window: Compile make -f ../gcc/Makefile -j8 Reading TouchGFX/application.config Reading TouchGFX/target.config Compiling Core/Src/main.c Com...
The MX configuration reported (generated from within the STM32CubeIDE, if that makes a difference) only includes the settings for the Config Parameters, Include Parameters and Advanced Settings tabs, but there are many more (Tasks and Queues, Timers ...
Process Explorer is showing a number of TouchGFXDesigner processes as running even though all instances of it have been closed (there are no windows visible).I found this when I tried to delete and folder and that failed with an "in use" message - Re...