Home
last modified time | relevance | path

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

/hal_stm32-latest/stm32cube/stm32n6xx/drivers/src/
Dstm32n6xx_hal_gpio.c524 void HAL_GPIO_SetRetime(GPIO_TypeDef *GPIOx, uint16_t GPIO_Pin, const GPIO_RetimeTypeDef *pRet_Init) in HAL_GPIO_SetRetime() argument
533 assert_param(IS_GPIO_RETIME(pRet_Init->Retime)); in HAL_GPIO_SetRetime()
534 assert_param(IS_GPIO_CLOCK(pRet_Init->Edge)); in HAL_GPIO_SetRetime()
548 temp |= (pRet_Init->Retime << ((position & 0x07u) * GPIO_ADVCFGRL_1_Pos)); in HAL_GPIO_SetRetime()
549 temp |= (pRet_Init->Edge << ((position & 0x07u) * GPIO_ADVCFGRL_1_Pos)); in HAL_GPIO_SetRetime()
564 …Def HAL_GPIO_GetRetime(const GPIO_TypeDef *GPIOx, uint16_t GPIO_Pin, GPIO_RetimeTypeDef *pRet_Init) in HAL_GPIO_GetRetime() argument
574 if (pRet_Init == NULL) in HAL_GPIO_GetRetime()
584 pRet_Init->Edge = ((GPIOx->ADVCFGR[position >> 3u] in HAL_GPIO_GetRetime()
586 pRet_Init->Retime = ((GPIOx->ADVCFGR[position >> 3u] & (GPIO_ADVCFGRL_RET0 << index)) >> index); in HAL_GPIO_GetRetime()
/hal_stm32-latest/stm32cube/stm32n6xx/drivers/include/
Dstm32n6xx_hal_gpio.h485 … HAL_GPIO_SetRetime(GPIO_TypeDef *GPIOx, uint16_t GPIO_Pin, const GPIO_RetimeTypeDef *pRet_Init);
486 …ef HAL_GPIO_GetRetime(const GPIO_TypeDef *GPIOx, uint16_t GPIO_Pin, GPIO_RetimeTypeDef *pRet_Init);