Home
last modified time | relevance | path

Searched refs:GPIO_InitStruct (Results 1 – 10 of 10) sorted by relevance

/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L4A6RG/Src/
Dstm32l4xx_hal_msp.c162 GPIO_InitTypeDef GPIO_InitStruct; in HAL_UART_MspInit() local
175 GPIO_InitStruct.Pin = GPIO_PIN_2|GPIO_PIN_3; in HAL_UART_MspInit()
176 GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; in HAL_UART_MspInit()
177 GPIO_InitStruct.Pull = GPIO_NOPULL; in HAL_UART_MspInit()
178 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; in HAL_UART_MspInit()
179 GPIO_InitStruct.Alternate = GPIO_AF7_USART2; in HAL_UART_MspInit()
180 HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); in HAL_UART_MspInit()
Dmain.c330 GPIO_InitTypeDef GPIO_InitStruct; in MX_GPIO_Init() local
341 GPIO_InitStruct.Pin = B1_Pin; in MX_GPIO_Init()
342 GPIO_InitStruct.Mode = GPIO_MODE_IT_RISING; in MX_GPIO_Init()
343 GPIO_InitStruct.Pull = GPIO_NOPULL; in MX_GPIO_Init()
344 HAL_GPIO_Init(B1_GPIO_Port, &GPIO_InitStruct); in MX_GPIO_Init()
347 GPIO_InitStruct.Pin = LD2_Pin; in MX_GPIO_Init()
348 GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; in MX_GPIO_Init()
349 GPIO_InitStruct.Pull = GPIO_NOPULL; in MX_GPIO_Init()
350 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; in MX_GPIO_Init()
351 HAL_GPIO_Init(LD2_GPIO_Port, &GPIO_InitStruct); in MX_GPIO_Init()
Dusbd_conf.c102 GPIO_InitTypeDef GPIO_InitStruct; in HAL_PCD_MspInit() local
113 GPIO_InitStruct.Pin = GPIO_PIN_11|GPIO_PIN_12; in HAL_PCD_MspInit()
114 GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; in HAL_PCD_MspInit()
115 GPIO_InitStruct.Pull = GPIO_NOPULL; in HAL_PCD_MspInit()
116 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; in HAL_PCD_MspInit()
117 GPIO_InitStruct.Alternate = GPIO_AF10_OTG_FS; in HAL_PCD_MspInit()
118 HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); in HAL_PCD_MspInit()
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L476RG/Src/
Dstm32l4xx_hal_msp.c162 GPIO_InitTypeDef GPIO_InitStruct; in HAL_UART_MspInit() local
175 GPIO_InitStruct.Pin = USART_TX_Pin|USART_RX_Pin; in HAL_UART_MspInit()
176 GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; in HAL_UART_MspInit()
177 GPIO_InitStruct.Pull = GPIO_NOPULL; in HAL_UART_MspInit()
178 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; in HAL_UART_MspInit()
179 GPIO_InitStruct.Alternate = GPIO_AF7_USART2; in HAL_UART_MspInit()
180 HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); in HAL_UART_MspInit()
Dmain.c337 GPIO_InitTypeDef GPIO_InitStruct; in MX_GPIO_Init() local
349 GPIO_InitStruct.Pin = B1_Pin; in MX_GPIO_Init()
350 GPIO_InitStruct.Mode = GPIO_MODE_IT_FALLING; in MX_GPIO_Init()
351 GPIO_InitStruct.Pull = GPIO_NOPULL; in MX_GPIO_Init()
352 HAL_GPIO_Init(B1_GPIO_Port, &GPIO_InitStruct); in MX_GPIO_Init()
355 GPIO_InitStruct.Pin = LD2_Pin; in MX_GPIO_Init()
356 GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; in MX_GPIO_Init()
357 GPIO_InitStruct.Pull = GPIO_NOPULL; in MX_GPIO_Init()
358 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; in MX_GPIO_Init()
359 HAL_GPIO_Init(LD2_GPIO_Port, &GPIO_InitStruct); in MX_GPIO_Init()
Dusbd_conf.c102 GPIO_InitTypeDef GPIO_InitStruct; in HAL_PCD_MspInit() local
113 GPIO_InitStruct.Pin = GPIO_PIN_11|GPIO_PIN_12; in HAL_PCD_MspInit()
114 GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; in HAL_PCD_MspInit()
115 GPIO_InitStruct.Pull = GPIO_NOPULL; in HAL_PCD_MspInit()
116 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; in HAL_PCD_MspInit()
117 GPIO_InitStruct.Alternate = GPIO_AF10_OTG_FS; in HAL_PCD_MspInit()
118 HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); in HAL_PCD_MspInit()
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L476RG/Drivers/STM32L4xx_HAL_Driver/Src/
Dstm32l4xx_hal_rcc.c1195 GPIO_InitTypeDef GPIO_InitStruct; in HAL_RCC_MCOConfig() local
1205 GPIO_InitStruct.Pin = MCO1_PIN; in HAL_RCC_MCOConfig()
1206 GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; in HAL_RCC_MCOConfig()
1207 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; in HAL_RCC_MCOConfig()
1208 GPIO_InitStruct.Pull = GPIO_NOPULL; in HAL_RCC_MCOConfig()
1209 GPIO_InitStruct.Alternate = GPIO_AF0_MCO; in HAL_RCC_MCOConfig()
1210 HAL_GPIO_Init(MCO1_GPIO_PORT, &GPIO_InitStruct); in HAL_RCC_MCOConfig()
Dstm32l4xx_hal_rcc_ex.c2470 GPIO_InitTypeDef GPIO_InitStruct; in HAL_RCCEx_EnableLSCO() local
2481 GPIO_InitStruct.Pin = LSCO_PIN; in HAL_RCCEx_EnableLSCO()
2482 GPIO_InitStruct.Mode = GPIO_MODE_ANALOG; in HAL_RCCEx_EnableLSCO()
2483 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; in HAL_RCCEx_EnableLSCO()
2484 GPIO_InitStruct.Pull = GPIO_NOPULL; in HAL_RCCEx_EnableLSCO()
2485 HAL_GPIO_Init(LSCO_GPIO_PORT, &GPIO_InitStruct); in HAL_RCCEx_EnableLSCO()
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L4A6RG/Drivers/STM32L4xx_HAL_Driver/Src/
Dstm32l4xx_hal_rcc.c1195 GPIO_InitTypeDef GPIO_InitStruct; in HAL_RCC_MCOConfig() local
1205 GPIO_InitStruct.Pin = MCO1_PIN; in HAL_RCC_MCOConfig()
1206 GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; in HAL_RCC_MCOConfig()
1207 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; in HAL_RCC_MCOConfig()
1208 GPIO_InitStruct.Pull = GPIO_NOPULL; in HAL_RCC_MCOConfig()
1209 GPIO_InitStruct.Alternate = GPIO_AF0_MCO; in HAL_RCC_MCOConfig()
1210 HAL_GPIO_Init(MCO1_GPIO_PORT, &GPIO_InitStruct); in HAL_RCC_MCOConfig()
Dstm32l4xx_hal_rcc_ex.c2470 GPIO_InitTypeDef GPIO_InitStruct; in HAL_RCCEx_EnableLSCO() local
2481 GPIO_InitStruct.Pin = LSCO_PIN; in HAL_RCCEx_EnableLSCO()
2482 GPIO_InitStruct.Mode = GPIO_MODE_ANALOG; in HAL_RCCEx_EnableLSCO()
2483 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; in HAL_RCCEx_EnableLSCO()
2484 GPIO_InitStruct.Pull = GPIO_NOPULL; in HAL_RCCEx_EnableLSCO()
2485 HAL_GPIO_Init(LSCO_GPIO_PORT, &GPIO_InitStruct); in HAL_RCCEx_EnableLSCO()