Question
Can't Blink Led in STM32F411 Discovery board
I create A project for STM32F411 Discovery board with STM32CubeIDE 1.19.0
and coding :
while (1)
{
/* USER CODE END WHILE */
MX_USB_HOST_Process();
HAL_GPIO_TogglePin(LD3_GPIO_Port, LD3_Pin);
HAL_Delay(500);
/* USER CODE BEGIN 3 */
}
and don't set anything else.
(I saw that the connection settings for the leds were automatically created when Creating project)
i Build and Run code sucessfully but i dont see led Blink. Thanks
Edited to apply source code formatting - please see How to insert source code for future reference.
