Question
with Evaluation STM32H7 board, LEDs do not work properly.
In my first stm32 project, I wanted to turn on and off LD1~LD4 on EVAL-STM32H757 board.
LD2 and LD4 worked good, but LD1 and LD3 did not work.
I set IOC file only RCC and GPIO and Clock Configuration with no error.
- GPIO Pins : PK3, PK4, PK5, PK6 as GPIO Outputs(corresponding LD1, LD2, LD3, LD4 respectively)
====
while (1)
{
HAL_GPIO_TogglePin(GPIOK, GPIO_PIN_3); // not working
HAL_GPIO_TogglePin(GPIOK, GPIO_PIN_4);
HAL_GPIO_TogglePin(GPIOK, GPIO_PIN_5); // not working
HAL_GPIO_TogglePin(GPIOK, GPIO_PIN_6);
HAL_Delay(50);
/* USER CODE END WHILE */
/* USER CODE BEGIN 3 */
}
/* USER CODE END 3 */
======
Did I missed something?
