STM32H750B-DK output pins don't work while using the display
Hi,
I am trying to make a relay driver with STM32H750DB-K, so I could switch the relays with toggle buttons on display, but I have a difficulty writing on digital pins.
When I don't generate code from TouchGFX (so starting from scratch) and just write on output pin E3 calling the function HAL_GPIO_WritePin(GPIOE, GPIO_PIN_3, GPIO_PIN_SET); in while function of main.c the voltage on pin E3 is set to 3.3V as expected. But when I generate a simple code with TouchGFX (just a toggle button) and write function HAL_GPIO_WritePin(GPIOE, GPIO_PIN_3, GPIO_PIN_SET); in while function of main.c (which is in TouchGFX folder) the voltage on pin E3 is 0V. I tried this on several pins, but it is always the same.
Is there something obvious that I am missing? Does anyone know the solution to this problem?
