STM32H735xx HAL User Manual
|
Defines | |
#define | IS_OTFDEC_INTERRUPTS(__INT__) |
Verify the OTFDEC peripheral interrupts parameter. | |
#define | IS_OTFDEC_REGION_CONFIG_LOCK(__LOCK__) |
Verify the OTFDEC region configuration lock parameter. | |
#define | IS_OTFDEC_REGION_OPERATING_MODE(__MODE__) |
Verify the OTFDEC region operating mode. | |
#define | IS_OTFDEC_REGIONINDEX(__INDEX__) |
Verify the OTFDEC region index. | |
#define | IS_OTFDEC_ATTRIBUTE(__ATTRIBUTE__) |
Verify the OTFDEC configuration attributes. |
#define IS_OTFDEC_ATTRIBUTE | ( | __ATTRIBUTE__ | ) |
(((__ATTRIBUTE__) == OTFDEC_ATTRIBUTE_PRIV) || \ ((__ATTRIBUTE__) == OTFDEC_ATTRIBUTE_NPRIV) )
Verify the OTFDEC configuration attributes.
__ATTRIBUTE__ | OTFDEC region index |
SET | (__ATTRIBUTE__ is valid) or RESET (__ATTRIBUTE__ is invalid) |
Definition at line 445 of file stm32h7xx_hal_otfdec.h.
#define IS_OTFDEC_INTERRUPTS | ( | __INT__ | ) |
(((__INT__) == OTFDEC_SEC_ERROR_INT) || \ ((__INT__) == OTFDEC_EXE_ERROR_INT) || \ ((__INT__) == OTFDEC_KEY_ERROR_INT) || \ ((__INT__) == OTFDEC_SEC_EXE_ERROR_INT) || \ ((__INT__) == OTFDEC_SEC_KEY_ERROR_INT) || \ ((__INT__) == OTFDEC_EXE_KEY_ERROR_INT) || \ ((__INT__) == OTFDEC_ALL_INT) )
Verify the OTFDEC peripheral interrupts parameter.
__INT__ | OTFDEC peripheral set of interrupts parameter |
SET | (__INT__ is valid) or RESET (__INT__ is invalid) |
Definition at line 404 of file stm32h7xx_hal_otfdec.h.
#define IS_OTFDEC_REGION_CONFIG_LOCK | ( | __LOCK__ | ) |
(((__LOCK__) == OTFDEC_REG_CONFIGR_LOCK_DISABLE) || \ ((__LOCK__) == OTFDEC_REG_CONFIGR_LOCK_ENABLE) )
Verify the OTFDEC region configuration lock parameter.
__LOCK__ | OTFDEC region lock parameter. |
SET | (__LOCK__ is valid) or RESET (__LOCK__ is invalid) |
Definition at line 417 of file stm32h7xx_hal_otfdec.h.
Referenced by HAL_OTFDEC_RegionConfig().
#define IS_OTFDEC_REGION_OPERATING_MODE | ( | __MODE__ | ) |
(((__MODE__) == OTFDEC_REG_MODE_INSTRUCTION_ACCESSES_ONLY) || \ ((__MODE__) == OTFDEC_REG_MODE_DATA_ACCESSES_ONLY) || \ ((__MODE__) == OTFDEC_REG_MODE_INSTRUCTION_OR_DATA_ACCESSES) || \ ((__MODE__) == OTFDEC_REG_MODE_INSTRUCTION_ACCESSES_ONLY_WITH_CIPHER))
Verify the OTFDEC region operating mode.
__MODE__ | OTFDEC region operating mode parameter. |
SET | (__MODE__ is valid) or RESET (__MODE__ is invalid) |
Definition at line 425 of file stm32h7xx_hal_otfdec.h.
Referenced by HAL_OTFDEC_RegionSetMode().
#define IS_OTFDEC_REGIONINDEX | ( | __INDEX__ | ) |
(((__INDEX__) == OTFDEC_REGION1) || \ ((__INDEX__) == OTFDEC_REGION2) || \ ((__INDEX__) == OTFDEC_REGION3) || \ ((__INDEX__) == OTFDEC_REGION4) )
Verify the OTFDEC region index.
__INDEX__ | OTFDEC region index |
SET | (__INDEX__ is valid) or RESET (__INDEX__ is invalid) |
Definition at line 435 of file stm32h7xx_hal_otfdec.h.
Referenced by HAL_OTFDEC_RegionConfig(), HAL_OTFDEC_RegionDisable(), HAL_OTFDEC_RegionEnable(), HAL_OTFDEC_RegionGetConfig(), HAL_OTFDEC_RegionGetKeyCRC(), HAL_OTFDEC_RegionKeyLock(), HAL_OTFDEC_RegionSetKey(), and HAL_OTFDEC_RegionSetMode().