User Activity

I'm working on a project using an STM32H753 micro. The device has an LCD with touch screen. The touch screen logic has an interrupt output which triggers the micro to read the current coordinates when the display is touched. I'm using a GPIO pin c...
I'm working on a project using an STM32H753XI MCU with a touch display. I am not currently using TouchGFX. I would like to preload images into the onboard QSPI during the project load. How do I go about doing this? I have used TouchGFX designer o...
Regarding this memory declaration section in the .id file, what does the "x" in the parenthesis represent?/* Specify the memory areas */MEMORY{ FLASH (rx)   : ORIGIN = 0x08000000, LENGTH = 2048K DTCMRAM (xrw) : ORIGIN = 0x20000000, LENGTH = 128K RAM_...
I'm working on a project using an STM32H753XI. The board is using a GT911 touch controller for the LCD. To configure the I2C address I have to control the interrupt pin during reset either high or low. This means I need to configure the MCU pin co...
I created a project for an STM32H753 MCU and have added FreeRTOS via CubeMX called from CubeIDE. CubeMX generates the following code in main.c: /* Init scheduler */ osKernelInitialize(); /* Call init function for freertos objects (in freertos.c) */ ...