21 lines
212 B
C
21 lines
212 B
C
/*
|
|
* user_main.h
|
|
*
|
|
* Created on: Nov 11, 2024
|
|
* Author: 10425
|
|
*/
|
|
|
|
#include "user.h"
|
|
|
|
void user_main()
|
|
{
|
|
user_init();
|
|
while(1)
|
|
{
|
|
HAL_GPIO_TogglePin (LED_GPIO_Port,LED_Pin);
|
|
delay_ms(500);
|
|
}
|
|
}
|
|
|
|
|