Searched refs:BootAddress0 (Results 1 – 1 of 1) sorted by relevance
/hal_stm32-latest/stm32cube/stm32h7xx/drivers/src/ |
D | stm32h7xx_hal_flash_ex.c | 126 static void FLASH_OB_BootAddConfig(uint32_t BootOption, uint32_t BootAddress0, uint32_t BootAddress… 127 static void FLASH_OB_GetBootAdd(uint32_t *BootAddress0, uint32_t *BootAddress1); 134 static void FLASH_OB_CM4BootAddConfig(uint32_t BootOption, uint32_t BootAddress0, uint32_t BootAddr… 135 static void FLASH_OB_GetCM4BootAdd(uint32_t *BootAddress0, uint32_t *BootAddress1); 1769 static void FLASH_OB_BootAddConfig(uint32_t BootOption, uint32_t BootAddress0, uint32_t BootAddress… in FLASH_OB_BootAddConfig() argument 1777 assert_param(IS_BOOT_ADDRESS(BootAddress0)); in FLASH_OB_BootAddConfig() 1781 MODIFY_REG(FLASH->BOOT7_PRG, FLASH_BOOT7_BCM7_ADD0, (BootAddress0 >> 16)); in FLASH_OB_BootAddConfig() 1783 MODIFY_REG(FLASH->BOOT_PRG, FLASH_BOOT_ADD0, (BootAddress0 >> 16)); in FLASH_OB_BootAddConfig() 1807 static void FLASH_OB_GetBootAdd(uint32_t *BootAddress0, uint32_t *BootAddress1) in FLASH_OB_GetBootAdd() argument 1814 (*BootAddress0) = (regvalue & FLASH_BOOT7_BCM7_ADD0) << 16; in FLASH_OB_GetBootAdd() [all …]
|