帮我写一个STM32F103C8T6点灯的程序
时间: 2023-12-04 21:03:55 浏览: 74
好的,以下是STM32F103C8T6点灯的程序:
```
#include "stm32f10x.h"
int main(void)
{
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE); // 使能 GPIOC 时钟
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOC, &GPIO_InitStructure);
while (1)
{
GPIO_SetBits(GPIOC, GPIO_Pin_13); // 点亮 LED
Delay_ms(1000); // 延时1秒
GPIO_ResetBits(GPIOC, GPIO_Pin_13); // 熄灭 LED
Delay_ms(1000); // 延时1秒
}
}
```
请注意,以上代码为参考代码,具体实现需要根据你的硬件连接和需求进行修改。
相关问题
写1个STM32F103C8T6点灯程序
可以的,以下是一个简单的STM32F103C8T6点灯程序:
#include "stm32f10x.h"
int main(void)
{
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE); //使能GPIOC时钟
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13; //设置GPIOC的Pin13
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //设置为推挽输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //设置GPIO速度为50MHz
GPIO_Init(GPIOC, &GPIO_InitStructure); //初始化GPIOC
while(1)
{
GPIO_SetBits(GPIOC, GPIO_Pin_13); //点亮LED
Delay(100); //延时1秒
GPIO_ResetBits(GPIOC, GPIO_Pin_13); //熄灭LED
Delay(100); //延时1秒
}
}
void Delay(__IO uint32_t nCount)
{
for(; nCount != ; nCount--);
}
希望对你有所帮助!
帮我写一个stm32f103c8t6的点灯程序
好的,以下是一个简单的stm32f103c8t6的点灯程序:
```c
#include "stm32f10x.h"
int main(void)
{
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE); // 使能GPIOC时钟
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13; // PC13引脚
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; // 推挽输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; // 50MHz
GPIO_Init(GPIOC, &GPIO_InitStructure); // 初始化GPIOC
while (1)
{
GPIO_SetBits(GPIOC, GPIO_Pin_13); // PC13引脚输出高电平
for (int i = 0; i < 1000000; i++); // 延时
GPIO_ResetBits(GPIOC, GPIO_Pin_13); // PC13引脚输出低电平
for (int i = 0; i < 1000000; i++); // 延时
}
}
```
这个程序会让PC13引脚交替输出高低电平,从而实现点灯的效果。
阅读全文