HAL
__HAL_DAC_DISABLE_IT is only used within HAL.
 
Symbols
loading...
Files
loading...

__HAL_DAC_DISABLE_IT macro

Disable the DAC interrupt.

Syntax

#define __HAL_DAC_DISABLE_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->CR) &= ~(__INTERRUPT__))

Arguments

__HANDLE__

specifies the DAC handle

__INTERRUPT__

specifies the DAC interrupt. This parameter can be any combination of the following values: @arg DAC_IT_DMAUDR1 DAC channel 1 DMA underrun interrupt @arg DAC_IT_DMAUDR2 DAC channel 2 DMA underrun interrupt

Return value

None

References

LocationText
stm32f4xx_hal_dac.h:317
#define __HAL_DAC_DISABLE_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->CR) &= ~(__INTERRUPT__))
stm32f4xx_hal_dac.c:692
__HAL_DAC_DISABLE_IT(hdac, DAC_IT_DMAUDR1);
stm32f4xx_hal_dac.c:701
__HAL_DAC_DISABLE_IT(hdac, DAC_IT_DMAUDR2);
stm32f4xx_hal_dac.c:740
__HAL_DAC_DISABLE_IT(hdac, DAC_CR_DMAEN1);
stm32f4xx_hal_dac.c:767
__HAL_DAC_DISABLE_IT(hdac, DAC_CR_DMAEN2);