Home
last modified time | relevance | path

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

/hal_stm32-latest/stm32cube/stm32g0xx/drivers/src/
Dstm32g0xx_hal_flash_ex.c115 … 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/
Dstm32g0xx_hal_flash.h126 …uint32_t SecSize2; /*!< This parameter defines securable memory area width in number of … member