RT-Thread-stm32f103精英开发板-LED闪烁
Posted WILLPOWER-
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RT-Thread-stm32f103精英开发板-LED闪烁相关的知识,希望对你有一定的参考价值。
准备工作
下载RT-Thread Studio
准备一个jtag下载器
构建工程
GPIO映射关系
软件
打开软件
这种形式是eclipse的软件形式,还是非常友好的
编译
打开main.c
将其中的程序删除,替换下面的程序
/*
* Copyright (c) 2006-2021, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2021-06-03 RT-Thread first version
*/
#include <rtthread.h>
#include <rtdevice.h>
#include <board.h>
#define DBG_TAG "main"
#define DBG_LVL DBG_LOG
#include <rtdbg.h>
#define LED0_PIN GET_PIN(B, 5)
int main(void)
{
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);
}
}
然后编译,下载即可
效果
可以看到板子下面的红色led闪烁,并且可以通过finsh来交互式查看以及控制一些信息
串口
以上是关于RT-Thread-stm32f103精英开发板-LED闪烁的主要内容,如果未能解决你的问题,请参考以下文章
RT-Thread-stm32f103精英开发板-LED闪烁
RT-Thread-stm32f103精英开发板-LED闪烁
RT-Thread-stm32f103精英开发板-SSD1306使用