STM32 IO口怎么配置成输入输出口?
1个回答
展开全部
配成输入
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10; //引脚10
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;//浮空输入
GPIO_Init(GPIOB, &GPIO_InitStructure);//PORTB口
配成输出
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0; //引脚0
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;//推完输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //50M时钟速度
GPIO_Init(GPIOC, &GPIO_InitStructure);//PORTC口
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10; //引脚10
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;//浮空输入
GPIO_Init(GPIOB, &GPIO_InitStructure);//PORTB口
配成输出
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0; //引脚0
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;//推完输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //50M时钟速度
GPIO_Init(GPIOC, &GPIO_InitStructure);//PORTC口
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询