|
DIY Logging Volt/Ampmeter
|
Macros | |
| #define | __HAL_DMA_GET_TC_FLAG_INDEX(__HANDLE__) |
| Returns the current DMA Channel transfer complete flag. More... | |
| #define | __HAL_DMA_GET_HT_FLAG_INDEX(__HANDLE__) |
| Return the current DMA Channel half transfer complete flag. More... | |
| #define | __HAL_DMA_GET_TE_FLAG_INDEX(__HANDLE__) |
| Return the current DMA Channel transfer error flag. More... | |
| #define | __HAL_DMA_GET_GI_FLAG_INDEX(__HANDLE__) |
| Return the current DMA Channel Global interrupt flag. More... | |
| #define | __HAL_DMA_GET_FLAG(__HANDLE__, __FLAG__) (DMA1->ISR & (__FLAG__)) |
| Get the DMA Channel pending flags. More... | |
| #define | __HAL_DMA_CLEAR_FLAG(__HANDLE__, __FLAG__) (DMA1->IFCR = (__FLAG__)) |
| Clear the DMA Channel pending flags. More... | |
| #define __HAL_DMA_CLEAR_FLAG | ( | __HANDLE__, | |
| __FLAG__ | |||
| ) | (DMA1->IFCR = (__FLAG__)) |
Clear the DMA Channel pending flags.
| <strong>HANDLE</strong> | DMA handle |
| <strong>FLAG</strong> | specifies the flag to clear. This parameter can be any combination of the following values:
|
| None |
Definition at line 250 of file stm32f1xx_hal_dma_ex.h.
| #define __HAL_DMA_GET_FLAG | ( | __HANDLE__, | |
| __FLAG__ | |||
| ) | (DMA1->ISR & (__FLAG__)) |
Get the DMA Channel pending flags.
| <strong>HANDLE</strong> | DMA handle |
| <strong>FLAG</strong> | Get the specified flag. This parameter can be any combination of the following values:
|
| The | state of FLAG (SET or RESET). |
Definition at line 236 of file stm32f1xx_hal_dma_ex.h.
| #define __HAL_DMA_GET_GI_FLAG_INDEX | ( | __HANDLE__ | ) |
Return the current DMA Channel Global interrupt flag.
| <strong>HANDLE</strong> | DMA handle |
| The | specified transfer error flag index. |
Definition at line 214 of file stm32f1xx_hal_dma_ex.h.
| #define __HAL_DMA_GET_HT_FLAG_INDEX | ( | __HANDLE__ | ) |
Return the current DMA Channel half transfer complete flag.
| <strong>HANDLE</strong> | DMA handle |
| The | specified half transfer complete flag index. |
Definition at line 186 of file stm32f1xx_hal_dma_ex.h.
| #define __HAL_DMA_GET_TC_FLAG_INDEX | ( | __HANDLE__ | ) |
Returns the current DMA Channel transfer complete flag.
| <strong>HANDLE</strong> | DMA handle |
| The | specified transfer complete flag index. |
Definition at line 172 of file stm32f1xx_hal_dma_ex.h.
| #define __HAL_DMA_GET_TE_FLAG_INDEX | ( | __HANDLE__ | ) |
Return the current DMA Channel transfer error flag.
| <strong>HANDLE</strong> | DMA handle |
| The | specified transfer error flag index. |
Definition at line 200 of file stm32f1xx_hal_dma_ex.h.