#include "app.h" #include "gpio.h" void app() { while (1) { HAL_GPIO_TogglePin(LED_GPIO_Port, LED_Pin); HAL_Delay(50); } }