STM32H735xx HAL User Manual
Defines
RNG_Ex Private Macros
RNG_Ex

Defines

#define IS_RNG_CLOCK_DIVIDER(__CLOCK_DIV__)
#define IS_RNG_NIST_COMPLIANCE(__NIST_COMPLIANCE__)
#define IS_RNG_CONFIG1(__CONFIG1__)   ((__CONFIG1__) <= 0x3FUL)
#define IS_RNG_CONFIG2(__CONFIG2__)   ((__CONFIG2__) <= 0x07UL)
#define IS_RNG_CONFIG3(__CONFIG3__)   ((__CONFIG3__) <= 0xFUL)

Define Documentation

#define IS_RNG_CLOCK_DIVIDER (   __CLOCK_DIV__)
Value:
(((__CLOCK_DIV__) == RNG_CLKDIV_BY_1)     || \
                                             ((__CLOCK_DIV__) == RNG_CLKDIV_BY_2)     || \
                                             ((__CLOCK_DIV__) == RNG_CLKDIV_BY_4)     || \
                                             ((__CLOCK_DIV__) == RNG_CLKDIV_BY_8)     || \
                                             ((__CLOCK_DIV__) == RNG_CLKDIV_BY_16)    || \
                                             ((__CLOCK_DIV__) == RNG_CLKDIV_BY_32)    || \
                                             ((__CLOCK_DIV__) == RNG_CLKDIV_BY_64)    || \
                                             ((__CLOCK_DIV__) == RNG_CLKDIV_BY_128)   || \
                                             ((__CLOCK_DIV__) == RNG_CLKDIV_BY_256)   || \
                                             ((__CLOCK_DIV__) == RNG_CLKDIV_BY_512)   || \
                                             ((__CLOCK_DIV__) == RNG_CLKDIV_BY_1024)  || \
                                             ((__CLOCK_DIV__) == RNG_CLKDIV_BY_2048)  || \
                                             ((__CLOCK_DIV__) == RNG_CLKDIV_BY_4096)  || \
                                             ((__CLOCK_DIV__) == RNG_CLKDIV_BY_8192)  || \
                                             ((__CLOCK_DIV__) == RNG_CLKDIV_BY_16384) || \
                                             ((__CLOCK_DIV__) == RNG_CLKDIV_BY_32768))

Definition at line 157 of file stm32h7xx_hal_rng_ex.h.

Referenced by HAL_RNGEx_SetConfig().

#define IS_RNG_CONFIG1 (   __CONFIG1__)    ((__CONFIG1__) <= 0x3FUL)

Definition at line 178 of file stm32h7xx_hal_rng_ex.h.

Referenced by HAL_RNGEx_SetConfig().

#define IS_RNG_CONFIG2 (   __CONFIG2__)    ((__CONFIG2__) <= 0x07UL)

Definition at line 180 of file stm32h7xx_hal_rng_ex.h.

Referenced by HAL_RNGEx_SetConfig().

#define IS_RNG_CONFIG3 (   __CONFIG3__)    ((__CONFIG3__) <= 0xFUL)

Definition at line 182 of file stm32h7xx_hal_rng_ex.h.

Referenced by HAL_RNGEx_SetConfig().

#define IS_RNG_NIST_COMPLIANCE (   __NIST_COMPLIANCE__)
Value:
(((__NIST_COMPLIANCE__) == RNG_NIST_COMPLIANT) || \
                                                     ((__NIST_COMPLIANCE__) == RNG_CUSTOM_NIST))

Definition at line 175 of file stm32h7xx_hal_rng_ex.h.

Referenced by HAL_RNGEx_SetConfig().