stm32f103cbt6程序例程
时间: 2023-06-23 20:10:21 浏览: 237
以下是一个简单的stm32f103cbt6程序例程,实现了LED闪烁功能:
```c
#include "stm32f10x.h"
void GPIO_Configuration(void);
void Delay(__IO uint32_t nCount);
int main(void)
{
GPIO_Configuration();
while (1)
{
GPIO_SetBits(GPIOC, GPIO_Pin_13);
Delay(0xFFFFF);
GPIO_ResetBits(GPIOC, GPIO_Pin_13);
Delay(0xFFFFF);
}
}
void GPIO_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE);
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);
}
void Delay(__IO uint32_t nCount)
{
for(; nCount != 0; nCount--);
}
```
该程序使用了STM32的GPIO模块控制了板子上的LED灯,每隔一段时间就会将LED灯状态翻转。如果需要使用其他外设模块或者其他功能,需要修改相应的代码。
要注意的是,该程序使用了STM32标准库函数,因此需要在编译时链接相关的库文件。
阅读全文