User Activity

 If I enable USB host and TouchGFX without OS I get the following generated code: /* USER CODE BEGIN WHILE */ while (1) { /* USER CODE END WHILE */ MX_USB_HOST_Process(); MX_TouchGFX_Process(); /* USER CODE BEGIN 3 */ } /* USE...
I want to align digits without prepending with 0. So %3d instead of %03d. 000:00 100:00 10:00 1:00 With non-monospaced fonts, such as verdana this doesn't work due to the space character not having the same width as digits. I don't care about the ...
I've made custom simulator skin for my project. My display is 1024*600 pixels (16-bit, rgb565, landscape). Project runs fine in simulator without skin and also on target.When adding the skin the corner of the skin is at the corner of my window, so th...
I'm updating a text field (textArea with wild card) every tick (only for testing, in practice it will be updated less, and only when invalidated when changed). It updates the field just fine, however the old value remains in the other frame buffer. S...
TouchGFX adds a redundant line ending to .cproject file when clicking generate code even if nothing has changed.This causes changes to show up in git and also makes merging and pull requests more complicated.In STM32CubeIDE the line ending is removed...