Home
last modified time | relevance | path

Searched refs:pConfigPVD (Results 1 – 4 of 4) sorted by relevance

/hal_stm32-latest/stm32cube/stm32u5xx/drivers/src/
Dstm32u5xx_hal_pwr.c393 HAL_StatusTypeDef HAL_PWR_ConfigPVD(PWR_PVDTypeDef *pConfigPVD) in HAL_PWR_ConfigPVD() argument
396 if (pConfigPVD == NULL) in HAL_PWR_ConfigPVD()
402 assert_param(IS_PWR_PVD_LEVEL(pConfigPVD->PVDLevel)); in HAL_PWR_ConfigPVD()
403 assert_param(IS_PWR_PVD_MODE(pConfigPVD->Mode)); in HAL_PWR_ConfigPVD()
406 MODIFY_REG(PWR->SVMCR, PWR_SVMCR_PVDLS, pConfigPVD->PVDLevel); in HAL_PWR_ConfigPVD()
415 if ((pConfigPVD->Mode & PVD_MODE_IT) == PVD_MODE_IT) in HAL_PWR_ConfigPVD()
421 if ((pConfigPVD->Mode & PVD_MODE_EVT) == PVD_MODE_EVT) in HAL_PWR_ConfigPVD()
427 if ((pConfigPVD->Mode & PVD_RISING_EDGE) == PVD_RISING_EDGE) in HAL_PWR_ConfigPVD()
433 if ((pConfigPVD->Mode & PVD_FALLING_EDGE) == PVD_FALLING_EDGE) in HAL_PWR_ConfigPVD()
/hal_stm32-latest/stm32cube/stm32n6xx/drivers/src/
Dstm32n6xx_hal_pwr.c365 void HAL_PWR_ConfigPVD(const PWR_PVDTypeDef *pConfigPVD) in HAL_PWR_ConfigPVD() argument
368 assert_param(IS_PWR_PVD_MODE(pConfigPVD->Mode)); in HAL_PWR_ConfigPVD()
377 if ((pConfigPVD->Mode & PVD_MODE_IT) == PVD_MODE_IT) in HAL_PWR_ConfigPVD()
383 if ((pConfigPVD->Mode & PVD_MODE_EVT) == PVD_MODE_EVT) in HAL_PWR_ConfigPVD()
389 if ((pConfigPVD->Mode & PVD_RISING_EDGE) == PVD_RISING_EDGE) in HAL_PWR_ConfigPVD()
395 if ((pConfigPVD->Mode & PVD_FALLING_EDGE) == PVD_FALLING_EDGE) in HAL_PWR_ConfigPVD()
/hal_stm32-latest/stm32cube/stm32n6xx/drivers/include/
Dstm32n6xx_hal_pwr.h623 void HAL_PWR_ConfigPVD(const PWR_PVDTypeDef *pConfigPVD);
/hal_stm32-latest/stm32cube/stm32u5xx/drivers/include/
Dstm32u5xx_hal_pwr.h757 HAL_StatusTypeDef HAL_PWR_ConfigPVD(PWR_PVDTypeDef *pConfigPVD);