STM32L443xx HAL User Manual
Defines
RNGEx Private Macros
RNGEx

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 147 of file stm32l4xx_hal_rng_ex.h.

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

Definition at line 168 of file stm32l4xx_hal_rng_ex.h.

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

Definition at line 170 of file stm32l4xx_hal_rng_ex.h.

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

Definition at line 172 of file stm32l4xx_hal_rng_ex.h.

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

Definition at line 165 of file stm32l4xx_hal_rng_ex.h.