stm32函数GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;这句话说是复用功能啥意思?一定采纳
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了stm32函数GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;这句话说是复用功能啥意思?一定采纳相关的知识,希望对你有一定的参考价值。
参考技术A复用就是这个管脚除了普通GPIO之外的功能,在datasheet肯定可以看到例如:PC1/I2C/usart之类的说明,如果使用了复用功能,那么该管脚不再作为普通GPIO(PC1)作用。
截至2010年7月1日,市面流通的型号有:
基本型:STM32F101R6、STM32F101C8、STM32F101R8、STM32F101V8、STM32F101RB、STM32F101VB。
增强型:STM32F103C8、STM32F103R8、STM32F103V8、STM32F103RB、STM32F103VB、 STM32F103VE、STM32F103ZE。
STM32型号的说明:以STM32F103RBT6这个型号的芯片为例,该型号的组成为7个部分。
扩展资料:
GPIO_EXTILineConfig(GPIO_PortSourceGPIOB, GPIO_PinSource8);
GPIO_EXTILineConfig(GPIO_PortSourceGPIOB, GPIO_PinSource9);
STM32中这两句话的意思是PB口的8、9管脚作为外部中断的触发信号,所以Pin_8和Pin_9就要设置成输入的模式。
而GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
中IPU是指IO口的工作模式是带上拉输入,这个和具体的电路有关;
总之如果选择某个IO口作为外部中断的触发信号,就必须配置这个IO口为输入模式,不然无法触发中断。
参考资料来源:百度百科-stm32
STM32 按键输入
#include "stm32f10x.h"
#include "key.h"
//按键初始化函数
void KEY_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12|GPIO_Pin_13|GPIO_Pin_14|GPIO_Pin_15|GPIO_Pin_4|GPIO_Pin_5|GPIO_Pin_6|GPIO_Pin_7|GPIO_Pin_8;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
GPIO_Init(GPIOB, &GPIO_InitStructure);
}
#ifndef __KEY_H #define __KEY_H #define KEY0 GPIO_ReadInputDataBit(GPIOB,GPIO_Pin_12)//读取按键0 #define KEY1 GPIO_ReadInputDataBit(GPIOB,GPIO_Pin_13)//读取按键1 #define KEY2 GPIO_ReadInputDataBit(GPIOB,GPIO_Pin_14)//读取按键2 #define KEY3 GPIO_ReadInputDataBit(GPIOB,GPIO_Pin_15)//读取按键3 #define KEY4 GPIO_ReadInputDataBit(GPIOB,GPIO_Pin_4)//读取按键0 #define KEY5 GPIO_ReadInputDataBit(GPIOB,GPIO_Pin_5)//读取按键1 #define KEY6 GPIO_ReadInputDataBit(GPIOB,GPIO_Pin_6)//读取按键2 #define KEY7 GPIO_ReadInputDataBit(GPIOB,GPIO_Pin_7)//读取按键3 #define KEY8 GPIO_ReadInputDataBit(GPIOB,GPIO_Pin_8)//读取按键3 void KEY_Init(void);//IO初始化 #endif
#include "stm32f10x.h" #include <stdio.h> #include "sys.h" #include "delay.h" #include "oled.h" #include "24l01.h" #include "key.h" /* OLED SCL-D0--PC15 SDA-D1--PC14 RST---PC13 DC---PB4*/ /* 2401--SPI1 MISO-PA6 SCK-PA5 CE-PB3 IRQ-PA3 MOSI-PA7 CSN-PA2 */ // c8t6
u8 tmp_buf[1] ; int main(void) { Stm32_Clock_Init(9);//系统时钟设置为外部晶振,9倍频 delay_init(72);//系统SysTick初始化 JTAG_Set(JTAG_SWD_DISABLE); //=====关闭JTAG接口 JTAG_Set(SWD_ENABLE); //=====打开SWD接口 可以利用主板的SWD接口调试 OLED_Init(); KEY_Init(); //NRF24L01_Init(); //=====NRF24L01无线模块初始化 // NRF24L01_FindMyself(); //=====NRF24L01无线模块检查 检测不到就停在这边自检闪灯 //tmp_buf[0]= 1 ; while (1) { // TX_Mode(); // OLED_ShowNumber(0,30,tmp_buf[0],5,12); // NRF24L01_TxPacket(tmp_buf); if(KEY0 == 0) { delay_ms(10); OLED_ShowString(0,20,"Key0"); } if(KEY1 == 0) { delay_ms(10); OLED_ShowString(0,20,"Key1"); } if(KEY2 == 0) { delay_ms(10); OLED_ShowString(0,20,"Key2"); } if(KEY3 == 0) { delay_ms(10); OLED_ShowString(0,20,"Key3"); } if(KEY4 == 0) { delay_ms(10); OLED_ShowString(0,20,"Key4"); } if(KEY5 == 0) { delay_ms(10); OLED_ShowString(0,20,"Key5"); } if(KEY6 == 0) { delay_ms(10); OLED_ShowString(0,20,"Key6"); } if(KEY7 == 0) { delay_ms(10); OLED_ShowString(0,20,"Key7"); } if(KEY8 == 0) { delay_ms(10); OLED_ShowString(0,20,"Key8"); } OLED_Refresh_Gram(); } }
以上是关于stm32函数GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;这句话说是复用功能啥意思?一定采纳的主要内容,如果未能解决你的问题,请参考以下文章
stm32外部中断这程序编译没问题,但触发不了外部中断,卡了一天了
stm32错误解释o.axf: Error: L60E: Symbol GPIO_InitStructure multiply defined (by httpd.o and main.o