上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页
摘要: 1. 使用固件库操作实现按键输入检测功能,同时使用LED灯指示按键状态。 2. 代码: main.c主函数 #include "stm32f10x.h" #include "bsp_led.h" #include "bsp_key.h" /*主函数*/ int main(void) { LED_GP 阅读全文
posted @ 2022-01-25 21:48 JRS077 阅读(367) 评论(0) 推荐(0) 编辑
摘要: 1. 项目:使用stm32f10x点亮LED灯,并实现流水灯效果。 2. 代码: main.c #include "stm32f10x.h" #include "bsp_led.h" /*延时函数*/ void Delay(uint32_t count) { for(;count!= 0; coun 阅读全文
posted @ 2022-01-21 20:07 JRS077 阅读(531) 评论(0) 推荐(0) 编辑
摘要: 1. 编译提示:.\Objects\BH-F103.axf: Error: L6218E: Undefined symbol RCC_APB2PeriphClkCmd (referred from bsp_led.o). 2. 解决办法: 选中RCC_APB2PeriphClkCmd按F12或者右键 阅读全文
posted @ 2022-01-21 19:21 JRS077 阅读(2731) 评论(0) 推荐(0) 编辑
摘要: 1. 新建文件夹stm32f10x, 然后在该文件夹内新建4个文件夹: Doc, Libraries, Project, User。 添加如下图所示,Project中无需添加。 2. 打开Keil5, 点击Project->New uVersion Project弹出Create New Proje 阅读全文
posted @ 2022-01-20 21:52 JRS077 阅读(1319) 评论(0) 推荐(0) 编辑
摘要: 1. 项目:使用固件库点亮LED灯。 2. 代码: main.c #include "stm32f10x.h" #include "stm32f10x_gpio.h" /*宏定义实现快速移植*/ #define LED_GPIO_PORT GPIOB #define LED_GPIO_CLK_ENA 阅读全文
posted @ 2022-01-15 20:38 JRS077 阅读(269) 评论(2) 推荐(0) 编辑
摘要: 1. 项目: 使用野火stm32指南者开发板寄存器点亮RGB LED灯。 2. 代码: main.c #include "stm32f10x.h" int main(void) { /*操作寄存器绝对地址*/ *(unsigned int *)0x40021018 |= ((1)<<3); //打开 阅读全文
posted @ 2022-01-15 20:28 JRS077 阅读(1296) 评论(0) 推荐(0) 编辑
摘要: 项目: 野火STM32指南者开发板,使用寄存器点亮LED灯 代码: #include "stm32f10x.h" int main(void) { *(unsigned int *)0x40021018 |= ((1)<<3); //打开GPIO端口时钟 *(unsigned int *)0x400 阅读全文
posted @ 2022-01-04 20:58 JRS077 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 转载:(55条消息) keil5串口USART输出中文乱码的解决方法_zhouml_msn的博客-CSDN博客 阅读全文
posted @ 2021-11-21 22:08 JRS077 阅读(650) 评论(0) 推荐(0) 编辑
摘要: 1. 项目 类似与C51单片机的位操作使能引脚来点亮LED. 例如,sbit P0^0 = 0 LED1 = P0^0; 2. 代码 main.c #include "stm32f10x.h" //相当于51单片机中的 #include <reg51.h> #include "bsp_key.h" 阅读全文
posted @ 2021-10-21 22:50 JRS077 阅读(737) 评论(0) 推荐(0) 编辑
摘要: 1. 项目 通过按键控制开关LED灯,按下按键灯亮,再按一下灯灭。 2. 代码 mian.c #include "stm32f10x.h" //相当于51单片机中的 #include <reg51.h> #include "bsp_key.h" #include "bsp_led.h" void D 阅读全文
posted @ 2021-10-19 22:45 JRS077 阅读(309) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页