#include "stm32f4xx_ll_gpio.h" #include "stm32f4xx_ll_bus.h" #include "stm32f4xx_ll_utils.h" #include "stm32f4xx_ll_rcc.h" void main(void) { LL_Init1msTick(16000000); LL_AHB1_GRP1_EnableClock(LL_AHB1_GRP1_PERIPH_GPIOA); LL_GPIO_SetPinMode(GPIOA, LL_GPIO_PIN_5, LL_GPIO_MODE_OUTPUT); while(1) { LL_GPIO_TogglePin(GPIOA, LL_GPIO_PIN_5); LL_mDelay(1000); } }