微波EDA网,见证研发工程师的成长!
首页 > 硬件设计 > 嵌入式设计 > STM32学习笔记之GPIO口的使用

STM32学习笔记之GPIO口的使用

时间:11-21 来源:互联网 点击:

{

for(;d_time>0;d_time--);

}

Led.h

#ifndef __LED_H

#define __LED_H

void LED_Init(void);

#endif

Led.c

#include "led.h"

//LED IO初始化

void LED_Init(void)

{

GPIO_InitTypeDef GPIO_InitStructure;

RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOF, ENABLE);

GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6|GPIO_Pin_7|GPIO_Pin_8|GPIO_Pin_9;

GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;

GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;

GPIO_Init(GPIOF, &GPIO_InitStructure);

GPIO_ResetBits(GPIOF,GPIO_Pin_6|GPIO_Pin_7|GPIO_Pin_8|GPIO_Pin_9);

}

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top