2023-01-23 16:39:02 +08:00

12 lines
184 B
C

#include "gpio.h"
#include "ui.h"
void app_init() {
ui_screen_main();
}
void app_main_loop() {
HAL_GPIO_TogglePin(LED_STATUS_GPIO_Port,LED_STATUS_Pin);
HAL_Delay(300);
}