GPIO_InitTypeDef GPIO_InitStructure;这句话什么意思
问题描述:
GPIO_InitTypeDef GPIO_InitStructure;这句话什么意思
答
声明一个结构体,名字是GPIO_InitStructure,结构体原型由GPIO_InitTypeDef 确定,
stm32里面初始化GPIO用的吧.设置完了GPIO_InitStructure里面的内容后
在GPIO_Init (GPIO_TypeDef *GPIOx,GPIO_InitTypeDef *GPIO_InitStruct)里面调用,
比如初始化pa口,就是
GPIO_Init (GPIOA,&GPIO_InitStructure),括号里后面那个就是你问题里面声明的那个结构体