STM32L4xx_HAL_Driver  1.14.0
Configuration of COMP, legacy functions name

Functions

__STATIC_INLINE void LL_COMP_SetInputNonInverting (COMP_TypeDef *COMPx, uint32_t InputNonInverting)
 
__STATIC_INLINE uint32_t LL_COMP_GetInputNonInverting (COMP_TypeDef *COMPx)
 
__STATIC_INLINE void LL_COMP_SetInputInverting (COMP_TypeDef *COMPx, uint32_t InputInverting)
 
__STATIC_INLINE uint32_t LL_COMP_GetInputInverting (COMP_TypeDef *COMPx)
 

Detailed Description

Function Documentation

◆ LL_COMP_GetInputInverting()

__STATIC_INLINE uint32_t LL_COMP_GetInputInverting ( COMP_TypeDef *  COMPx)

Definition at line 737 of file stm32l4xx_ll_comp.h.

738 {
739  return LL_COMP_GetInputMinus(COMPx);
740 }
__STATIC_INLINE uint32_t LL_COMP_GetInputMinus(COMP_TypeDef *COMPx)
Get comparator input minus (inverting).

◆ LL_COMP_GetInputNonInverting()

__STATIC_INLINE uint32_t LL_COMP_GetInputNonInverting ( COMP_TypeDef *  COMPx)

Definition at line 728 of file stm32l4xx_ll_comp.h.

729 {
730  return LL_COMP_GetInputPlus(COMPx);
731 }
__STATIC_INLINE uint32_t LL_COMP_GetInputPlus(COMP_TypeDef *COMPx)
Get comparator input plus (non-inverting).

◆ LL_COMP_SetInputInverting()

__STATIC_INLINE void LL_COMP_SetInputInverting ( COMP_TypeDef *  COMPx,
uint32_t  InputInverting 
)

Definition at line 733 of file stm32l4xx_ll_comp.h.

734 {
735  LL_COMP_SetInputMinus(COMPx, InputInverting);
736 }
__STATIC_INLINE void LL_COMP_SetInputMinus(COMP_TypeDef *COMPx, uint32_t InputMinus)
Set comparator input minus (inverting).

◆ LL_COMP_SetInputNonInverting()

__STATIC_INLINE void LL_COMP_SetInputNonInverting ( COMP_TypeDef *  COMPx,
uint32_t  InputNonInverting 
)

Definition at line 724 of file stm32l4xx_ll_comp.h.

725 {
726  LL_COMP_SetInputPlus(COMPx, InputNonInverting);
727 }
__STATIC_INLINE void LL_COMP_SetInputPlus(COMP_TypeDef *COMPx, uint32_t InputPlus)
Set comparator input plus (non-inverting).