#define key_3 GPIO _ReadInputDataBit(GPIOE,KEY_3) void key_init(void); #endif key.c文件内容是: #include "key.h" void key_init() { GPIO_InitTypeDef GPIO_InitStructure; SystemInit(); RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA|RCC_APB2Periph_GPIOE,ENABLE); GPIO_InitStructure.GPIO_Speed...
EXTI_InitTypeDef EXTI_InitStructure; NVIC_InitTypeDef NVIC_InitStructure; RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO , ENABLE); //使能中断时钟 KEY_Init(); ///gpio.c中断线及中断初始化配置 GPIO_EXTILineConfig(GPIO_PortSourceGPIOC,GPIO_PinSource5); EXTI_InitStructure.EXTI_Mode =EXTI_Mode_Interrupt...
• user\main.c(7): error: #20: identifier "GPIO" is undefined 23411 • MDK5,STM32f407编译问题 3216 • STM32连接到地后将GPIO引脚拉高工作出现的问题 6631 • 用keil 编写STC单片机程序,用人使用过__func__宏吗? 4847 • 请问GPIO_InitStructure是什么意思呢? 18372 1...
说明GPIO_InitTypeDef 没有定义。你看看是否是输错了宏定义(字母,大小写)
总是提示,main.c(15): error: #20: identifier "GPIO_Speed_50MHZ" is undefined 意思应该是GPIO_Speed_50MHZ未定义。 如果我用//把GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHZ;这个语句屏蔽。 编译不报错可以生产HEX文件。 不知道是什么原因。 请知道可能原因的人给些解释。谢谢! 最佳答案 xuyuhaoa...
GPIO_InitTypeDef GPIO_InitStructure;/* 设置USART1的Tx脚(PA.9)为第二功能推挽输出模式 */ GPIO_...
GPIO_InitTypeDef GPIO_InitStructure;/* 设置USART1的Tx脚(PA.9)为第二功能推挽输出模式 */ GPIO_...