Searched refs:RegId (Results 1 – 2 of 2) sorted by relevance
| /hal_stm32-latest/stm32cube/stm32n6xx/drivers/src/ |
| D | stm32n6xx_hal_bsec.c | 778 HAL_StatusTypeDef HAL_BSEC_OTP_ReadShadow(BSEC_HandleTypeDef * hbsec, uint32_t RegId, uint32_t *pRe… in HAL_BSEC_OTP_ReadShadow() argument 796 if (RegId < BSEC_NB_SHADOW_REG) in HAL_BSEC_OTP_ReadShadow() 798 status_reg = RegId / 32U; in HAL_BSEC_OTP_ReadShadow() 799 status_bit = (uint32_t)(1UL << (RegId % 32U)); in HAL_BSEC_OTP_ReadShadow() 804 *pRegData = hbsec->Instance->FVRw[RegId]; in HAL_BSEC_OTP_ReadShadow() 831 HAL_StatusTypeDef HAL_BSEC_OTP_WriteShadow(BSEC_HandleTypeDef *hbsec, uint32_t RegId, uint32_t RegD… in HAL_BSEC_OTP_WriteShadow() argument 850 if ((RegId > BSEC_SHADOW_REG_WRITE_LIMIT) && (RegId < BSEC_NB_SHADOW_REG)) in HAL_BSEC_OTP_WriteShadow() 852 status_reg = RegId / 32U; in HAL_BSEC_OTP_WriteShadow() 853 status_bit = (uint32_t)(1UL << (RegId % 32U)); in HAL_BSEC_OTP_WriteShadow() 860 hbsec->Instance->FVRw[RegId] = RegData; in HAL_BSEC_OTP_WriteShadow() [all …]
|
| /hal_stm32-latest/stm32cube/stm32n6xx/drivers/include/ |
| D | stm32n6xx_hal_bsec.h | 330 HAL_StatusTypeDef HAL_BSEC_OTP_ReadShadow(BSEC_HandleTypeDef * hbsec, uint32_t RegId, uint32_t *pRe… 331 HAL_StatusTypeDef HAL_BSEC_OTP_WriteShadow(BSEC_HandleTypeDef *hbsec, uint32_t RegId, uint32_t RegD… 332 HAL_StatusTypeDef HAL_BSEC_OTP_GetShadowState(BSEC_HandleTypeDef * hbsec, uint32_t RegId, uint32_t …
|