2024-11-11 01:39 AM
Dear all!
this is the first time i handle with STM32H7 series. in my project control ILI9488 by TouchGFX platform, 4 mosfets, 1 Led. in the first step, i try to blink a led at pin PB5 but seem unsuccess. i don't know how to fix, so can you share me my mistake and how to fix it. in attach file have schematic. can you take a look and share me your input.
2024-11-11 01:56 AM
Hello,
If you comment the line MX_TouchGFX_Process(); what happens?
2024-11-11 06:14 AM
2024-11-11 06:19 AM
Sorry I don't see any change in the While loop:
while (1)
{
/* USER CODE END WHILE */
MX_TouchGFX_Process();
/* USER CODE BEGIN 3 */
HAL_GPIO_TogglePin(GPIOB, Run_led_Pin);
HAL_Delay(300);
}
Could you please remove the call of MX_TouchGFX_Process() and try?
2024-11-11 06:22 AM
Dear!
this function was generate automatic when we use touchGFX designer, if we remove it. we can not display TFT LCD
2024-11-11 06:35 AM
You need to check the GPIO toggle function first before going ahead with TouchGFX. This is how we proceed while we face an issue. Going step by step.
2024-11-13 03:24 AM
Hello @khanhcong861989
Were you able to toggle the GPIO by commenting out MX_TouchGFX_Process() ?
2024-11-14 05:21 PM
still can't, i'm try remove MX_TouchGFX_Process() but still can't
2024-11-15 12:23 AM
Ok start with a very simple project where you only toggle that pin.
If it doesn't work you need to attach that simple project and your board schematics.
2024-11-15 11:11 PM