stm32f103c8t6最小系统驱动程序
时间: 2023-07-24 19:33:31 浏览: 208
OLED显示屏STM32F103C8T6驱动程序.zip_oled stm32f103c8t6_oled显示屏程序_stm32f
5星 · 资源好评率100%
以下是STM32F103C8T6最小系统的驱动程序:
```c
#include "stm32f10x.h"
#include "delay.h"
void LED_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStructure);
}
int main(void)
{
LED_Init();
while (1)
{
GPIO_SetBits(GPIOB, GPIO_Pin_5);
Delay_ms(500);
GPIO_ResetBits(GPIOB, GPIO_Pin_5);
Delay_ms(500);
}
}
```
其中,delay.h 是一个自己编写的延时函数库。需要注意的是,该驱动程序使用的是 STM32F10x 的库函数,因此需要在编译时链接相应的库文件。
阅读全文