STM32L4xx_HAL_Driver  1.14.0

Functions

__STATIC_INLINE uint32_t LL_DAC_IsActiveFlag_CAL1 (DAC_TypeDef *DACx)
 Get DAC calibration offset flag for DAC channel 1 SR CAL_FLAG1 LL_DAC_IsActiveFlag_CAL1. More...
 
__STATIC_INLINE uint32_t LL_DAC_IsActiveFlag_CAL2 (DAC_TypeDef *DACx)
 Get DAC calibration offset flag for DAC channel 2 SR CAL_FLAG2 LL_DAC_IsActiveFlag_CAL2. More...
 
__STATIC_INLINE uint32_t LL_DAC_IsActiveFlag_BWST1 (DAC_TypeDef *DACx)
 Get DAC busy writing sample time flag for DAC channel 1 SR BWST1 LL_DAC_IsActiveFlag_BWST1. More...
 
__STATIC_INLINE uint32_t LL_DAC_IsActiveFlag_BWST2 (DAC_TypeDef *DACx)
 Get DAC busy writing sample time flag for DAC channel 2 SR BWST2 LL_DAC_IsActiveFlag_BWST2. More...
 
__STATIC_INLINE uint32_t LL_DAC_IsActiveFlag_DMAUDR1 (DAC_TypeDef *DACx)
 Get DAC underrun flag for DAC channel 1 SR DMAUDR1 LL_DAC_IsActiveFlag_DMAUDR1. More...
 
__STATIC_INLINE uint32_t LL_DAC_IsActiveFlag_DMAUDR2 (DAC_TypeDef *DACx)
 Get DAC underrun flag for DAC channel 2 SR DMAUDR2 LL_DAC_IsActiveFlag_DMAUDR2. More...
 
__STATIC_INLINE void LL_DAC_ClearFlag_DMAUDR1 (DAC_TypeDef *DACx)
 Clear DAC underrun flag for DAC channel 1 SR DMAUDR1 LL_DAC_ClearFlag_DMAUDR1. More...
 
__STATIC_INLINE void LL_DAC_ClearFlag_DMAUDR2 (DAC_TypeDef *DACx)
 Clear DAC underrun flag for DAC channel 2 SR DMAUDR2 LL_DAC_ClearFlag_DMAUDR2. More...
 

Detailed Description

Function Documentation

◆ LL_DAC_ClearFlag_DMAUDR1()

__STATIC_INLINE void LL_DAC_ClearFlag_DMAUDR1 ( DAC_TypeDef *  DACx)

Clear DAC underrun flag for DAC channel 1 SR DMAUDR1 LL_DAC_ClearFlag_DMAUDR1.

Parameters
DACxDAC instance
Return values
None

Definition at line 1845 of file stm32l4xx_ll_dac.h.

1846 {
1847  WRITE_REG(DACx->SR, LL_DAC_FLAG_DMAUDR1);
1848 }

◆ LL_DAC_ClearFlag_DMAUDR2()

__STATIC_INLINE void LL_DAC_ClearFlag_DMAUDR2 ( DAC_TypeDef *  DACx)

Clear DAC underrun flag for DAC channel 2 SR DMAUDR2 LL_DAC_ClearFlag_DMAUDR2.

Parameters
DACxDAC instance
Return values
None

Definition at line 1857 of file stm32l4xx_ll_dac.h.

1858 {
1859  WRITE_REG(DACx->SR, LL_DAC_FLAG_DMAUDR2);
1860 }

◆ LL_DAC_IsActiveFlag_BWST1()

__STATIC_INLINE uint32_t LL_DAC_IsActiveFlag_BWST1 ( DAC_TypeDef *  DACx)

Get DAC busy writing sample time flag for DAC channel 1 SR BWST1 LL_DAC_IsActiveFlag_BWST1.

Parameters
DACxDAC instance
Return values
Stateof bit (1 or 0).

Definition at line 1797 of file stm32l4xx_ll_dac.h.

1798 {
1799  return ((READ_BIT(DACx->SR, LL_DAC_FLAG_BWST1) == (LL_DAC_FLAG_BWST1)) ? 1UL : 0UL);
1800 }

◆ LL_DAC_IsActiveFlag_BWST2()

__STATIC_INLINE uint32_t LL_DAC_IsActiveFlag_BWST2 ( DAC_TypeDef *  DACx)

Get DAC busy writing sample time flag for DAC channel 2 SR BWST2 LL_DAC_IsActiveFlag_BWST2.

Parameters
DACxDAC instance
Return values
Stateof bit (1 or 0).

Definition at line 1809 of file stm32l4xx_ll_dac.h.

1810 {
1811  return ((READ_BIT(DACx->SR, LL_DAC_FLAG_BWST2) == (LL_DAC_FLAG_BWST2)) ? 1UL : 0UL);
1812 }

◆ LL_DAC_IsActiveFlag_CAL1()

__STATIC_INLINE uint32_t LL_DAC_IsActiveFlag_CAL1 ( DAC_TypeDef *  DACx)

Get DAC calibration offset flag for DAC channel 1 SR CAL_FLAG1 LL_DAC_IsActiveFlag_CAL1.

Parameters
DACxDAC instance
Return values
Stateof bit (1 or 0).

Definition at line 1773 of file stm32l4xx_ll_dac.h.

1774 {
1775  return ((READ_BIT(DACx->SR, LL_DAC_FLAG_CAL1) == (LL_DAC_FLAG_CAL1)) ? 1UL : 0UL);
1776 }

◆ LL_DAC_IsActiveFlag_CAL2()

__STATIC_INLINE uint32_t LL_DAC_IsActiveFlag_CAL2 ( DAC_TypeDef *  DACx)

Get DAC calibration offset flag for DAC channel 2 SR CAL_FLAG2 LL_DAC_IsActiveFlag_CAL2.

Parameters
DACxDAC instance
Return values
Stateof bit (1 or 0).

Definition at line 1785 of file stm32l4xx_ll_dac.h.

1786 {
1787  return ((READ_BIT(DACx->SR, LL_DAC_FLAG_CAL2) == (LL_DAC_FLAG_CAL2)) ? 1UL : 0UL);
1788 }

◆ LL_DAC_IsActiveFlag_DMAUDR1()

__STATIC_INLINE uint32_t LL_DAC_IsActiveFlag_DMAUDR1 ( DAC_TypeDef *  DACx)

Get DAC underrun flag for DAC channel 1 SR DMAUDR1 LL_DAC_IsActiveFlag_DMAUDR1.

Parameters
DACxDAC instance
Return values
Stateof bit (1 or 0).

Definition at line 1821 of file stm32l4xx_ll_dac.h.

1822 {
1823  return ((READ_BIT(DACx->SR, LL_DAC_FLAG_DMAUDR1) == (LL_DAC_FLAG_DMAUDR1)) ? 1UL : 0UL);
1824 }

◆ LL_DAC_IsActiveFlag_DMAUDR2()

__STATIC_INLINE uint32_t LL_DAC_IsActiveFlag_DMAUDR2 ( DAC_TypeDef *  DACx)

Get DAC underrun flag for DAC channel 2 SR DMAUDR2 LL_DAC_IsActiveFlag_DMAUDR2.

Parameters
DACxDAC instance
Return values
Stateof bit (1 or 0).

Definition at line 1833 of file stm32l4xx_ll_dac.h.

1834 {
1835  return ((READ_BIT(DACx->SR, LL_DAC_FLAG_DMAUDR2) == (LL_DAC_FLAG_DMAUDR2)) ? 1UL : 0UL);
1836 }