* 重新pull后上传bsp和action * remove the file named main.c in cubemx prj and add enter at last in the file named user_key.c * remove personal project environment file project.uvguix.slhuan in rtt/bsp/stm32/stm32f103_100ask_mini * remove system_stmf1xx.c in bsp/stm32/stm32f103-100ask_pro/mini * modify stm32f1xx_it.c code to conform to the specification Co-authored-by: slhuan <953172510@qq.com>
31 lines
610 B
C
31 lines
610 B
C
/*
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2019-03-08 obito0 first version
|
|
*/
|
|
|
|
#include <rtthread.h>
|
|
#include <rtdevice.h>
|
|
#include <board.h>
|
|
|
|
/* defined the LED0 pin: PA1 */
|
|
#define LED0_PIN GET_PIN(A, 1)
|
|
|
|
int main(void)
|
|
{
|
|
/* set LED0 pin mode to output */
|
|
rt_pin_mode(LED0_PIN, PIN_MODE_OUTPUT);
|
|
|
|
while (1)
|
|
{
|
|
rt_pin_write(LED0_PIN, PIN_HIGH);
|
|
rt_thread_mdelay(500);
|
|
rt_pin_write(LED0_PIN, PIN_LOW);
|
|
rt_thread_mdelay(500);
|
|
}
|
|
}
|