下你所需,载你所想!
汇集开发技术源码资料

32f103c8t6LED控制:LED 闪烁

:1.505MB :1 :2022-10-15 15:09:13

部分简介

32f103c8t6LED控制:LED 闪烁如果开发者对于本文件有需要的可以参考。
#include "stm32f10x.h"
#include "delay.h"
#include "LED.h"
int main(void)
{
Init_LEDpin(); //初始化led连接的I/O口
delay_init() ; //延时初始化
while(1)
{
LED2 = 0; //低电平点亮小灯
LED3 = 0; //低电平点亮小灯
delay_ms(500);
LED2 = 1;
LED3 = 1;
delay_ms(500);
}
}
.
├── LED 闪烁
│ ├── CORE
│ │ ├── core_cm3.c
│ │ ├── stm32f10x_conf.h
│ │ ├── stm32f10x_it.c
│ │ ├── stm32f10x_it.h
│ │ ├── system_stm32f10x.c
│ │ └── system_stm32f10x.h
│ └── keilkilll.bat
└── LED 闪烁.rar
14 directories, 167 files

32f103c8t6LED控制:LED 闪烁

热门推荐

相关文章