Searched refs:SecSize2 (Results 1 – 2 of 2) sorted by relevance
/hal_stm32-latest/stm32cube/stm32g0xx/drivers/src/ |
D | stm32g0xx_hal_flash_ex.c | 115 … void FLASH_OB_SecMemConfig(uint32_t BootEntry, uint32_t SecSize, uint32_t SecSize2); 116 … void FLASH_OB_GetSecMem(uint32_t *BootEntry, uint32_t *SecSize, uint32_t *SecSize2); 381 FLASH_OB_SecMemConfig(pOBInit->BootEntryPoint, pOBInit->SecSize, pOBInit->SecSize2); in HAL_FLASHEx_OBProgram() 450 FLASH_OB_GetSecMem(&(pOBInit->BootEntryPoint), &(pOBInit->SecSize), &(pOBInit->SecSize2)); in HAL_FLASHEx_OBGetConfig() 1215 static void FLASH_OB_SecMemConfig(uint32_t BootEntry, uint32_t SecSize, uint32_t SecSize2) in FLASH_OB_SecMemConfig() argument 1225 assert_param(IS_OB_SEC_SIZE(SecSize2)); in FLASH_OB_SecMemConfig() 1230 FLASH->SECR = (secmem | BootEntry | SecSize | (SecSize2 << FLASH_SECR_SEC_SIZE2_Pos)); in FLASH_OB_SecMemConfig() 1242 static void FLASH_OB_GetSecMem(uint32_t *BootEntry, uint32_t *SecSize, uint32_t *SecSize2) in FLASH_OB_GetSecMem() argument 1248 *SecSize2 = (secmem & FLASH_SECR_SEC_SIZE2) >> FLASH_SECR_SEC_SIZE2_Pos; in FLASH_OB_GetSecMem()
|
/hal_stm32-latest/stm32cube/stm32g0xx/drivers/include/ |
D | stm32g0xx_hal_flash.h | 126 …uint32_t SecSize2; /*!< This parameter defines securable memory area width in number of … member
|