STM32H735xx HAL User Manual
Defines
OPAMP Private Macros
OPAMP

Defines

#define IS_OPAMP_FUNCTIONAL_NORMALMODE(INPUT)
#define IS_OPAMP_INVERTING_INPUT_STANDALONE(INPUT)
#define IS_OPAMP_NONINVERTING_INPUT(INPUT)
#define IS_OPAMP_PGACONNECT(CONNECT)
#define IS_OPAMP_PGA_GAIN(GAIN)
#define IS_OPAMP_VREF(VREF)
#define IS_OPAMP_POWERMODE(TRIMMING)
#define IS_OPAMP_TRIMMING(TRIMMING)
#define IS_OPAMP_TRIMMINGVALUE(TRIMMINGVALUE)   ((TRIMMINGVALUE) <= 0x1FU)
#define IS_OPAMP_FACTORYTRIMMING(TRIMMING)

Define Documentation

#define IS_OPAMP_FACTORYTRIMMING (   TRIMMING)
Value:
(((TRIMMING) == OPAMP_FACTORYTRIMMING_N) || \
                                             ((TRIMMING) == OPAMP_FACTORYTRIMMING_P))

Definition at line 371 of file stm32h7xx_hal_opamp.h.

Referenced by HAL_OPAMP_GetTrimOffset().

#define IS_OPAMP_FUNCTIONAL_NORMALMODE (   INPUT)
Value:
(((INPUT) == OPAMP_STANDALONE_MODE) || \
                                               ((INPUT) == OPAMP_PGA_MODE) || \
                                               ((INPUT) == OPAMP_FOLLOWER_MODE))

Definition at line 329 of file stm32h7xx_hal_opamp.h.

Referenced by HAL_OPAMP_Init().

Value:
(((INPUT) == OPAMP_INVERTINGINPUT_IO0) || \
                                                    ((INPUT) == OPAMP_INVERTINGINPUT_IO1))

Definition at line 333 of file stm32h7xx_hal_opamp.h.

Referenced by HAL_OPAMP_Init().

#define IS_OPAMP_NONINVERTING_INPUT (   INPUT)
Value:

Definition at line 341 of file stm32h7xx_hal_opamp.h.

Referenced by HAL_OPAMP_Init().

#define IS_OPAMP_PGA_GAIN (   GAIN)
Value:

Definition at line 350 of file stm32h7xx_hal_opamp.h.

Referenced by HAL_OPAMP_Init().

#define IS_OPAMP_PGACONNECT (   CONNECT)
Value:

Definition at line 345 of file stm32h7xx_hal_opamp.h.

Referenced by HAL_OPAMP_Init().

#define IS_OPAMP_POWERMODE (   TRIMMING)
#define IS_OPAMP_TRIMMING (   TRIMMING)
Value:
(((TRIMMING) == OPAMP_TRIMMING_FACTORY) || \
                                     ((TRIMMING) == OPAMP_TRIMMING_USER))

Definition at line 365 of file stm32h7xx_hal_opamp.h.

Referenced by HAL_OPAMP_Init().

#define IS_OPAMP_TRIMMINGVALUE (   TRIMMINGVALUE)    ((TRIMMINGVALUE) <= 0x1FU)

Definition at line 369 of file stm32h7xx_hal_opamp.h.

Referenced by HAL_OPAMP_Init().

#define IS_OPAMP_VREF (   VREF)
Value:
(((VREF) == OPAMP_VREF_3VDDA)  || \
                             ((VREF) == OPAMP_VREF_10VDDA) || \
                             ((VREF) == OPAMP_VREF_50VDDA) || \
                             ((VREF) == OPAMP_VREF_90VDDA))

Definition at line 356 of file stm32h7xx_hal_opamp.h.