Home
last modified time | relevance | path

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

/hal_stm32-latest/stm32cube/stm32h5xx/drivers/src/
Dstm32h5xx_hal_flash_ex.c124 static void FLASH_OB_HDPConfig(uint32_t Banks, uint32_t HDPStartSector, uint32_t HDPEndSector);
125 static void FLASH_OB_GetHDP(uint32_t Bank, uint32_t *HDPStartSector, uint32_t *HDPEndSector);
418 FLASH_OB_HDPConfig(pOBInit->Banks, pOBInit->HDPStartSector, pOBInit->HDPEndSector); in HAL_FLASHEx_OBProgram()
469 FLASH_OB_GetHDP(pOBInit->Banks, &(pOBInit->HDPStartSector), &(pOBInit->HDPEndSector)); in HAL_FLASHEx_OBGetConfig()
1690 static void FLASH_OB_HDPConfig(uint32_t Banks, uint32_t HDPStartSector, uint32_t HDPEndSector) in FLASH_OB_HDPConfig() argument
1694 assert_param(IS_FLASH_SECTOR(HDPStartSector)); in FLASH_OB_HDPConfig()
1701 FLASH->HDP1R_PRG = ((HDPEndSector << FLASH_HDPR_HDP_END_Pos) | HDPStartSector); in FLASH_OB_HDPConfig()
1707 FLASH->HDP2R_PRG = ((HDPEndSector << FLASH_HDPR_HDP_END_Pos) | HDPStartSector); in FLASH_OB_HDPConfig()
1725 static void FLASH_OB_GetHDP(uint32_t Bank, uint32_t *HDPStartSector, uint32_t *HDPEndSector) in FLASH_OB_GetHDP() argument
1741 *HDPStartSector = (regvalue & FLASH_HDPR_HDP_STRT); in FLASH_OB_GetHDP()
/hal_stm32-latest/stm32cube/stm32h5xx/drivers/include/
Dstm32h5xx_hal_flash_ex.h115 uint32_t HDPStartSector; /*!< Start sector of HDP area (used for OPTIONBYTE_HDP). member