Extended private functions.
More...
Extended private functions.
◆ DAC_DMAConvCpltCh2()
DMA conversion complete callback.
- Parameters
-
| hdma | pointer to a DMA_HandleTypeDef structure that contains the configuration information for the specified DMA module. |
- Return values
-
Definition at line 580 of file stm32l4xx_hal_dac_ex.c.
584 #if (USE_HAL_DAC_REGISTER_CALLBACKS == 1) 585 hdac->ConvCpltCallbackCh2(hdac);
590 hdac->State = HAL_DAC_STATE_READY;
struct __DAC_HandleTypeDef else typedef struct endif DAC_HandleTypeDef
DAC handle Structure definition.
__weak void HAL_DACEx_ConvCpltCallbackCh2(DAC_HandleTypeDef *hdac)
Conversion complete callback in non-blocking mode for Channel2.
DMA handle Structure definition.
◆ DAC_DMAErrorCh2()
DMA error callback.
- Parameters
-
| hdma | pointer to a DMA_HandleTypeDef structure that contains the configuration information for the specified DMA module. |
- Return values
-
Definition at line 616 of file stm32l4xx_hal_dac_ex.c.
621 hdac->ErrorCode |= HAL_DAC_ERROR_DMA;
623 #if (USE_HAL_DAC_REGISTER_CALLBACKS == 1) 624 hdac->ErrorCallbackCh2(hdac);
629 hdac->State = HAL_DAC_STATE_READY;
struct __DAC_HandleTypeDef else typedef struct endif DAC_HandleTypeDef
DAC handle Structure definition.
DMA handle Structure definition.
__weak void HAL_DACEx_ErrorCallbackCh2(DAC_HandleTypeDef *hdac)
Error DAC callback for Channel2.
◆ DAC_DMAHalfConvCpltCh2()
DMA half transfer complete callback.
- Parameters
-
| hdma | pointer to a DMA_HandleTypeDef structure that contains the configuration information for the specified DMA module. |
- Return values
-
Definition at line 599 of file stm32l4xx_hal_dac_ex.c.
603 #if (USE_HAL_DAC_REGISTER_CALLBACKS == 1) 604 hdac->ConvHalfCpltCallbackCh2(hdac);
struct __DAC_HandleTypeDef else typedef struct endif DAC_HandleTypeDef
DAC handle Structure definition.
DMA handle Structure definition.
__weak void HAL_DACEx_ConvHalfCpltCallbackCh2(DAC_HandleTypeDef *hdac)
Conversion half DMA transfer callback in non-blocking mode for Channel2.