Home
last modified time | relevance | path

Searched refs:LPGPIO_InitStruct (Results 1 – 2 of 2) sorted by relevance

/hal_stm32-latest/stm32cube/stm32u5xx/drivers/src/
Dstm32u5xx_ll_lpgpio.c103 …rStatus LL_LPGPIO_Init(GPIO_TypeDef *LPGPIOx, const LL_LPGPIO_InitTypeDef *const LPGPIO_InitStruct) in LL_LPGPIO_Init() argument
110 assert_param(IS_LL_LPGPIO_PIN(LPGPIO_InitStruct->Pin)); in LL_LPGPIO_Init()
111 assert_param(IS_LL_LPGPIO_MODE(LPGPIO_InitStruct->Mode)); in LL_LPGPIO_Init()
115 pinpos = POSITION_VAL(LPGPIO_InitStruct->Pin); in LL_LPGPIO_Init()
118 while (((LPGPIO_InitStruct->Pin) >> pinpos) != 0U) in LL_LPGPIO_Init()
121 currentpin = (LPGPIO_InitStruct->Pin) & (1UL << pinpos); in LL_LPGPIO_Init()
126 LL_LPGPIO_SetPinMode(LPGPIOx, currentpin, LPGPIO_InitStruct->Mode); in LL_LPGPIO_Init()
140 void LL_LPGPIO_StructInit(LL_LPGPIO_InitTypeDef *LPGPIO_InitStruct) in LL_LPGPIO_StructInit() argument
143 LPGPIO_InitStruct->Pin = LL_LPGPIO_PIN_ALL; in LL_LPGPIO_StructInit()
144 LPGPIO_InitStruct->Mode = LL_LPGPIO_MODE_INPUT; in LL_LPGPIO_StructInit()
/hal_stm32-latest/stm32cube/stm32u5xx/drivers/include/
Dstm32u5xx_ll_lpgpio.h436 …Status LL_LPGPIO_Init(GPIO_TypeDef *LPGPIOx, const LL_LPGPIO_InitTypeDef *const LPGPIO_InitStruct);
437 void LL_LPGPIO_StructInit(LL_LPGPIO_InitTypeDef *LPGPIO_InitStruct);