Home
last modified time | relevance | path

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

/hal_stm32-latest/stm32cube/stm32u5xx/drivers/include/
Dstm32u5xx_ll_lpgpio.h195 __STATIC_INLINE void LL_LPGPIO_SetPinMode(GPIO_TypeDef *LPGPIOx, uint32_t Pin, uint32_t Mode) in LL_LPGPIO_SetPinMode() argument
197 …MODIFY_REG(LPGPIOx->MODER, (LPGPIO_MODER_MOD0 << (POSITION_VAL(Pin))), (Mode << (POSITION_VAL(Pin)… in LL_LPGPIO_SetPinMode()
227 __STATIC_INLINE uint32_t LL_LPGPIO_GetPinMode(const GPIO_TypeDef *LPGPIOx, uint32_t Pin) in LL_LPGPIO_GetPinMode() argument
229 return (uint32_t)(READ_BIT(LPGPIOx->MODER, in LL_LPGPIO_GetPinMode()
248 __STATIC_INLINE uint32_t LL_LPGPIO_ReadInputPort(const GPIO_TypeDef *LPGPIOx) in LL_LPGPIO_ReadInputPort() argument
250 return (uint32_t)(READ_REG(LPGPIOx->IDR)); in LL_LPGPIO_ReadInputPort()
277 __STATIC_INLINE uint32_t LL_LPGPIO_IsInputPinSet(const GPIO_TypeDef *LPGPIOx, uint32_t PinMask) in LL_LPGPIO_IsInputPinSet() argument
279 return ((READ_BIT(LPGPIOx->IDR, PinMask) == (PinMask)) ? 1UL : 0UL); in LL_LPGPIO_IsInputPinSet()
290 __STATIC_INLINE void LL_LPGPIO_WriteOutputPort(GPIO_TypeDef *LPGPIOx, uint32_t PortValue) in LL_LPGPIO_WriteOutputPort() argument
292 WRITE_REG(LPGPIOx->ODR, PortValue); in LL_LPGPIO_WriteOutputPort()
[all …]
/hal_stm32-latest/stm32cube/stm32u5xx/drivers/src/
Dstm32u5xx_ll_lpgpio.c73 ErrorStatus LL_LPGPIO_DeInit(const GPIO_TypeDef *LPGPIOx) in LL_LPGPIO_DeInit() argument
78 assert_param(IS_LPGPIO_ALL_INSTANCE(LPGPIOx)); in LL_LPGPIO_DeInit()
81 if (LPGPIOx == LPGPIO1) in LL_LPGPIO_DeInit()
103 ErrorStatus LL_LPGPIO_Init(GPIO_TypeDef *LPGPIOx, const LL_LPGPIO_InitTypeDef *const LPGPIO_InitStr… in LL_LPGPIO_Init() argument
109 assert_param(IS_LPGPIO_ALL_INSTANCE(LPGPIOx)); in LL_LPGPIO_Init()
126 LL_LPGPIO_SetPinMode(LPGPIOx, currentpin, LPGPIO_InitStruct->Mode); in LL_LPGPIO_Init()