Lines Matching refs:GPIO_InitStructure
181 GPIO_InitTypeDef GPIO_InitStructure; in UART1PINconfigStepB() local
183 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9; in UART1PINconfigStepB()
184 GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; in UART1PINconfigStepB()
185 GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; in UART1PINconfigStepB()
186 GPIO_Init(GPIOA, &GPIO_InitStructure); in UART1PINconfigStepB()
187 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10; in UART1PINconfigStepB()
188 GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU; in UART1PINconfigStepB()
189 GPIO_Init(GPIOA, &GPIO_InitStructure); in UART1PINconfigStepB()
205 GPIO_InitTypeDef GPIO_InitStructure; in UART2PINconfigStepB() local
207 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2; in UART2PINconfigStepB()
208 GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; in UART2PINconfigStepB()
209 GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; in UART2PINconfigStepB()
210 GPIO_Init(GPIOA, &GPIO_InitStructure); in UART2PINconfigStepB()
211 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3; in UART2PINconfigStepB()
212 GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING; in UART2PINconfigStepB()
213 GPIO_Init(GPIOA, &GPIO_InitStructure); in UART2PINconfigStepB()