mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-12-06 15:42:41 +00:00
* 添加bsp到ci * [BSP]stm32f103-keysking学习板 bsp移植(first version) * 压缩board.png * 删除不必要文件(main.c,system_stm32f1xx.c) * 修改ignore文件 * 删改CubeMX_Config多余文件 * 修改attach文件为ci.attachconfig.yml * yml添加 --strict
35 lines
741 B
C
35 lines
741 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
|
|
* 2023-12-03 Meco Man support nano version
|
|
*/
|
|
|
|
#include <board.h>
|
|
#include <rtthread.h>
|
|
#include <drv_gpio.h>
|
|
#ifndef RT_USING_NANO
|
|
#include <rtdevice.h>
|
|
#endif /* RT_USING_NANO */
|
|
|
|
/* defined the LED0(GREEN) pin: PA7 */
|
|
#define LED0_PIN GET_PIN(A, 7)
|
|
|
|
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);
|
|
}
|
|
}
|