Home
last modified time | relevance | path

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

/hal_stm32-latest/stm32cube/stm32n6xx/drivers/src/
Dstm32n6xx_hal.c647 void HAL_SYSCFG_EnablePullDown(uint32_t BootId) in HAL_SYSCFG_EnablePullDown() argument
650 assert_param(IS_SYSCFG_BOOT_ID(BootId)); in HAL_SYSCFG_EnablePullDown()
652 SET_BIT(SYSCFG->BOOTCR, BootId); in HAL_SYSCFG_EnablePullDown()
663 void HAL_SYSCFG_DisablePullDown(uint32_t BootId) in HAL_SYSCFG_DisablePullDown() argument
666 assert_param(IS_SYSCFG_BOOT_ID(BootId)); in HAL_SYSCFG_DisablePullDown()
668 CLEAR_BIT(SYSCFG->BOOTCR, BootId); in HAL_SYSCFG_DisablePullDown()
2061 uint32_t HAL_SYSCFG_GetBootPinConnection(uint32_t BootId) in HAL_SYSCFG_GetBootPinConnection() argument
2066 assert_param(IS_SYSCFG_BOOT_ID(BootId)); in HAL_SYSCFG_GetBootPinConnection()
2068 Connection = READ_BIT(SYSCFG->BOOTSR, BootId); in HAL_SYSCFG_GetBootPinConnection()
2070 if (BootId == SYSCFG_BOOTCR_BOOT0_PD) in HAL_SYSCFG_GetBootPinConnection()
/hal_stm32-latest/stm32cube/stm32n6xx/drivers/include/
Dstm32n6xx_hal.h827 void HAL_SYSCFG_EnablePullDown(uint32_t BootId);
828 void HAL_SYSCFG_DisablePullDown(uint32_t BootId);
975 uint32_t HAL_SYSCFG_GetBootPinConnection(uint32_t BootId);