![]() |
STM32F769IDiscovery
1.00
uDANTE Audio Networking with STM32F7 DISCO board
|
Macros | |
#define | __HAL_SPI_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_SPI_STATE_RESET) |
Reset SPI handle state. More... | |
#define | __HAL_SPI_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR2 |= (__INTERRUPT__)) |
Enables or disables the specified SPI interrupts. More... | |
#define | __HAL_SPI_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR2 &= (~(__INTERRUPT__))) |
#define | __HAL_SPI_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((((__HANDLE__)->Instance->CR2 & (__INTERRUPT__)) == (__INTERRUPT__)) ? SET : RESET) |
Checks if the specified SPI interrupt source is enabled or disabled. More... | |
#define | __HAL_SPI_GET_FLAG(__HANDLE__, __FLAG__) ((((__HANDLE__)->Instance->SR) & (__FLAG__)) == (__FLAG__)) |
Checks whether the specified SPI flag is set or not. More... | |
#define | __HAL_SPI_CLEAR_CRCERRFLAG(__HANDLE__) ((__HANDLE__)->Instance->SR = (uint16_t)(~SPI_FLAG_CRCERR)) |
Clears the SPI CRCERR pending flag. More... | |
#define | __HAL_SPI_CLEAR_MODFFLAG(__HANDLE__) |
Clears the SPI MODF pending flag. More... | |
#define | __HAL_SPI_CLEAR_OVRFLAG(__HANDLE__) |
Clears the SPI OVR pending flag. More... | |
#define | __HAL_SPI_CLEAR_FREFLAG(__HANDLE__) |
Clears the SPI FRE pending flag. More... | |
#define | __HAL_SPI_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 |= SPI_CR1_SPE) |
Enables the SPI. More... | |
#define | __HAL_SPI_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 &= (~SPI_CR1_SPE)) |
Disables the SPI. More... | |
#define __HAL_SPI_CLEAR_CRCERRFLAG | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->SR = (uint16_t)(~SPI_FLAG_CRCERR)) |
Clears the SPI CRCERR pending flag.
<strong>HANDLE</strong> | : specifies the SPI Handle. This parameter can be SPI where x: 1, 2, or 3 to select the SPI peripheral. |
None |
Definition at line 463 of file stm32f7xx_hal_spi.h.
#define __HAL_SPI_CLEAR_FREFLAG | ( | __HANDLE__ | ) |
Clears the SPI FRE pending flag.
<strong>HANDLE</strong> | : specifies the SPI Handle. This parameter can be SPI where x: 1, 2, or 3 to select the SPI peripheral. |
None |
Definition at line 499 of file stm32f7xx_hal_spi.h.
#define __HAL_SPI_CLEAR_MODFFLAG | ( | __HANDLE__ | ) |
Clears the SPI MODF pending flag.
<strong>HANDLE</strong> | : specifies the SPI Handle. This parameter can be SPI where x: 1, 2, or 3 to select the SPI peripheral. |
None |
Definition at line 471 of file stm32f7xx_hal_spi.h.
#define __HAL_SPI_CLEAR_OVRFLAG | ( | __HANDLE__ | ) |
Clears the SPI OVR pending flag.
<strong>HANDLE</strong> | : specifies the SPI Handle. This parameter can be SPI where x: 1, 2, or 3 to select the SPI peripheral. |
None |
Definition at line 485 of file stm32f7xx_hal_spi.h.
#define __HAL_SPI_DISABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR1 &= (~SPI_CR1_SPE)) |
Disables the SPI.
<strong>HANDLE</strong> | : specifies the SPI Handle. This parameter can be SPI where x: 1, 2, or 3 to select the SPI peripheral. |
None |
Definition at line 518 of file stm32f7xx_hal_spi.h.
#define __HAL_SPI_DISABLE_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) | ((__HANDLE__)->Instance->CR2 &= (~(__INTERRUPT__))) |
Definition at line 426 of file stm32f7xx_hal_spi.h.
#define __HAL_SPI_ENABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR1 |= SPI_CR1_SPE) |
Enables the SPI.
<strong>HANDLE</strong> | : specifies the SPI Handle. This parameter can be SPI where x: 1, 2, or 3 to select the SPI peripheral. |
None |
Definition at line 511 of file stm32f7xx_hal_spi.h.
#define __HAL_SPI_ENABLE_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) | ((__HANDLE__)->Instance->CR2 |= (__INTERRUPT__)) |
Enables or disables the specified SPI interrupts.
<strong>HANDLE</strong> | : specifies the SPI Handle. This parameter can be SPI where x: 1, 2, or 3 to select the SPI peripheral. |
<strong>INTERRUPT</strong> | : specifies the interrupt source to enable or disable. This parameter can be one of the following values:
|
None |
Definition at line 425 of file stm32f7xx_hal_spi.h.
#define __HAL_SPI_GET_FLAG | ( | __HANDLE__, | |
__FLAG__ | |||
) | ((((__HANDLE__)->Instance->SR) & (__FLAG__)) == (__FLAG__)) |
Checks whether the specified SPI flag is set or not.
<strong>HANDLE</strong> | : specifies the SPI Handle. This parameter can be SPI where x: 1, 2, or 3 to select the SPI peripheral. |
<strong>FLAG</strong> | : specifies the flag to check. This parameter can be one of the following values:
|
The | new state of FLAG (TRUE or FALSE). |
Definition at line 456 of file stm32f7xx_hal_spi.h.
#define __HAL_SPI_GET_IT_SOURCE | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) | ((((__HANDLE__)->Instance->CR2 & (__INTERRUPT__)) == (__INTERRUPT__)) ? SET : RESET) |
Checks if the specified SPI interrupt source is enabled or disabled.
<strong>HANDLE</strong> | : specifies the SPI Handle. This parameter can be SPI where x: 1, 2, or 3 to select the SPI peripheral. |
<strong>INTERRUPT</strong> | : specifies the SPI interrupt source to check. This parameter can be one of the following values:
|
The | new state of IT (TRUE or FALSE). |
Definition at line 438 of file stm32f7xx_hal_spi.h.
#define __HAL_SPI_RESET_HANDLE_STATE | ( | __HANDLE__ | ) | ((__HANDLE__)->State = HAL_SPI_STATE_RESET) |
Reset SPI handle state.
<strong>HANDLE</strong> | SPI handle. |
None |
Definition at line 413 of file stm32f7xx_hal_spi.h.