初级会员
- 积分
- 86
- 金钱
- 86
- 注册时间
- 2016-9-6
- 在线时间
- 15 小时
|
这句语句的意思什么意思呢。这个是结构体指针吗?GPIO_InitTypeDef GPIO_InitStructure; GPIO_InitTypeDef 代表的是结构体但是后面的 GPIO_InitStructure是什么意思呢是不是从新把GPIO_InitTypeDef定义了一下改 为GPIO_InitStructure
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF,ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9|GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;
GPIO_Init(GPIOF,&GPIO_IintStructure);
void GPIO_Init(GPIO_TypeDef* GPIOx, GPIO_InitTypeDef* GPIO_InitStruct) 这一句代表什么意思呢?
|
|