![]() |
STM32F769IDiscovery
1.00
uDANTE Audio Networking with STM32F7 DISCO board
|
Macros | |
#define | __HAL_DCMI_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_DCMI_STATE_RESET) |
Reset DCMI handle state. More... | |
#define | __HAL_DCMI_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= DCMI_CR_ENABLE) |
Enable the DCMI. More... | |
#define | __HAL_DCMI_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~(DCMI_CR_ENABLE)) |
Disable the DCMI. More... | |
#define | __HAL_DCMI_GET_FLAG(__HANDLE__, __FLAG__) |
Get the DCMI pending flag. More... | |
#define | __HAL_DCMI_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ICR = (__FLAG__)) |
Clear the DCMI pending flags. More... | |
#define | __HAL_DCMI_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->IER |= (__INTERRUPT__)) |
Enable the specified DCMI interrupts. More... | |
#define | __HAL_DCMI_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->IER &= ~(__INTERRUPT__)) |
Disable the specified DCMI interrupts. More... | |
#define | __HAL_DCMI_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->MISR & (__INTERRUPT__)) |
Check whether the specified DCMI interrupt has occurred or not. More... | |
#define __HAL_DCMI_CLEAR_FLAG | ( | __HANDLE__, | |
__FLAG__ | |||
) | ((__HANDLE__)->Instance->ICR = (__FLAG__)) |
Clear the DCMI pending flags.
<strong>HANDLE</strong> | DCMI handle |
<strong>FLAG</strong> | specifies the flag to clear. This parameter can be any combination of the following values:
|
None |
Definition at line 433 of file stm32f7xx_hal_dcmi.h.
#define __HAL_DCMI_DISABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR &= ~(DCMI_CR_ENABLE)) |
Disable the DCMI.
<strong>HANDLE</strong> | DCMI handle |
None |
Definition at line 394 of file stm32f7xx_hal_dcmi.h.
#define __HAL_DCMI_DISABLE_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) | ((__HANDLE__)->Instance->IER &= ~(__INTERRUPT__)) |
Disable the specified DCMI interrupts.
<strong>HANDLE</strong> | DCMI handle |
<strong>INTERRUPT</strong> | specifies the DCMI interrupt sources to be enabled. This parameter can be any combination of the following values:
|
None |
Definition at line 461 of file stm32f7xx_hal_dcmi.h.
#define __HAL_DCMI_ENABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR |= DCMI_CR_ENABLE) |
Enable the DCMI.
<strong>HANDLE</strong> | DCMI handle |
None |
Definition at line 387 of file stm32f7xx_hal_dcmi.h.
#define __HAL_DCMI_ENABLE_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) | ((__HANDLE__)->Instance->IER |= (__INTERRUPT__)) |
Enable the specified DCMI interrupts.
<strong>HANDLE</strong> | DCMI handle |
<strong>INTERRUPT</strong> | specifies the DCMI interrupt sources to be enabled. This parameter can be any combination of the following values:
|
None |
Definition at line 447 of file stm32f7xx_hal_dcmi.h.
#define __HAL_DCMI_GET_FLAG | ( | __HANDLE__, | |
__FLAG__ | |||
) |
Get the DCMI pending flag.
<strong>HANDLE</strong> | DCMI handle |
<strong>FLAG</strong> | Get the specified flag. This parameter can be one of the following values (no combination allowed)
|
The | state of FLAG. |
Definition at line 417 of file stm32f7xx_hal_dcmi.h.
#define __HAL_DCMI_GET_IT_SOURCE | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) | ((__HANDLE__)->Instance->MISR & (__INTERRUPT__)) |
Check whether the specified DCMI interrupt has occurred or not.
<strong>HANDLE</strong> | DCMI handle |
<strong>INTERRUPT</strong> | specifies the DCMI interrupt source to check. This parameter can be one of the following values:
|
The | state of INTERRUPT. |
Definition at line 475 of file stm32f7xx_hal_dcmi.h.
#define __HAL_DCMI_RESET_HANDLE_STATE | ( | __HANDLE__ | ) | ((__HANDLE__)->State = HAL_DCMI_STATE_RESET) |
Reset DCMI handle state.
<strong>HANDLE</strong> | specifies the DCMI handle. |
None |
Definition at line 380 of file stm32f7xx_hal_dcmi.h.