微波EDA网,见证研发工程师的成长!
首页 > 硬件设计 > 嵌入式设计 > STM32F107VCT6的GPIO配置

STM32F107VCT6的GPIO配置

时间:11-10 来源:互联网 点击:
输出配置

#define LED_GPIO GPIOC
#define LED_PIN GPIO_Pin_9

void GPIO_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;

//LED
GPIO_InitStructure.GPIO_Pin = LED_PIN;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //推挽式输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(LED_GPIO, &GPIO_InitStructure);
GPIO_WriteBit(LED_GPIO, LED_PIN, Bit_RESET);
}

输入配置

#define MON_GPIO GPIOC
#define MON_PIN GPIO_Pin_9

void GPIO_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;

//监视管脚
GPIO_InitStructure.GPIO_Pin = MON_PIN;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPD; //GPIO_Mode_IN_FLOATING浮空输入模式
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(MON_GPIO, &GPIO_InitStructure);
}


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

网站地图

Top