Macros | |
#define | __HAL_USART_CLEAR_FEFLAG(__HANDLE__) __HAL_USART_CLEAR_FLAG((__HANDLE__), USART_CLEAR_FEF) |
Clear the USART FE pending flag. More... | |
#define | __HAL_USART_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ICR = (__FLAG__)) |
Clear the specified USART pending flag. More... | |
#define | __HAL_USART_CLEAR_IDLEFLAG(__HANDLE__) __HAL_USART_CLEAR_FLAG((__HANDLE__), USART_CLEAR_IDLEF) |
Clear the USART IDLE pending flag. More... | |
#define | __HAL_USART_CLEAR_IT(__HANDLE__, __IT_CLEAR__) ((__HANDLE__)->Instance->ICR = (uint32_t)(__IT_CLEAR__)) |
Clear the specified USART ISR flag, in setting the proper ICR register flag. More... | |
#define | __HAL_USART_CLEAR_NEFLAG(__HANDLE__) __HAL_USART_CLEAR_FLAG((__HANDLE__), USART_CLEAR_NEF) |
Clear the USART NE pending flag. More... | |
#define | __HAL_USART_CLEAR_OREFLAG(__HANDLE__) __HAL_USART_CLEAR_FLAG((__HANDLE__), USART_CLEAR_OREF) |
Clear the USART ORE pending flag. More... | |
#define | __HAL_USART_CLEAR_PEFLAG(__HANDLE__) __HAL_USART_CLEAR_FLAG((__HANDLE__), USART_CLEAR_PEF) |
Clear the USART PE pending flag. More... | |
#define | __HAL_USART_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 &= ~USART_CR1_UE) |
Disable USART. More... | |
#define | __HAL_USART_DISABLE_IT(__HANDLE__, __INTERRUPT__) |
Disable the specified USART interrupt. More... | |
#define | __HAL_USART_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 |= USART_CR1_UE) |
Enable USART. More... | |
#define | __HAL_USART_ENABLE_IT(__HANDLE__, __INTERRUPT__) |
Enable the specified USART interrupt. More... | |
#define | __HAL_USART_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->ISR & (__FLAG__)) == (__FLAG__)) |
Check whether the specified USART flag is set or not. More... | |
#define | __HAL_USART_GET_IT(__HANDLE__, __INTERRUPT__) |
Check whether the specified USART interrupt has occurred or not. More... | |
#define | __HAL_USART_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) |
Check whether the specified USART interrupt source is enabled or not. More... | |
#define | __HAL_USART_ONE_BIT_SAMPLE_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3 &= ~USART_CR3_ONEBIT) |
Disable the USART one bit sample method. More... | |
#define | __HAL_USART_ONE_BIT_SAMPLE_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3|= USART_CR3_ONEBIT) |
Enable the USART one bit sample method. More... | |
#define | __HAL_USART_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_USART_STATE_RESET) |
Reset USART handle state. More... | |
#define | __HAL_USART_SEND_REQ(__HANDLE__, __REQ__) ((__HANDLE__)->Instance->RQR |= (uint16_t)(__REQ__)) |
Set a specific USART request flag. More... | |
#define __HAL_USART_CLEAR_FEFLAG | ( | __HANDLE__ | ) | __HAL_USART_CLEAR_FLAG((__HANDLE__), USART_CLEAR_FEF) |
Clear the USART FE pending flag.
<strong>HANDLE</strong> | specifies the USART Handle. |
None |
Definition at line 443 of file stm32f7xx_hal_usart.h.
#define __HAL_USART_CLEAR_FLAG | ( | __HANDLE__, | |
__FLAG__ | |||
) | ((__HANDLE__)->Instance->ICR = (__FLAG__)) |
Clear the specified USART pending flag.
<strong>HANDLE</strong> | specifies the USART Handle. |
<strong>FLAG</strong> | specifies the flag to check. This parameter can be any combination of the following values:
|
None |
Definition at line 431 of file stm32f7xx_hal_usart.h.
#define __HAL_USART_CLEAR_IDLEFLAG | ( | __HANDLE__ | ) | __HAL_USART_CLEAR_FLAG((__HANDLE__), USART_CLEAR_IDLEF) |
Clear the USART IDLE pending flag.
<strong>HANDLE</strong> | specifies the USART Handle. |
None |
Definition at line 461 of file stm32f7xx_hal_usart.h.
#define __HAL_USART_CLEAR_IT | ( | __HANDLE__, | |
__IT_CLEAR__ | |||
) | ((__HANDLE__)->Instance->ICR = (uint32_t)(__IT_CLEAR__)) |
Clear the specified USART ISR flag, in setting the proper ICR register flag.
<strong>HANDLE</strong> | specifies the USART Handle. |
<strong>IT_CLEAR</strong> | specifies the interrupt clear register flag that needs to be set to clear the corresponding interrupt. This parameter can be one of the following values:
|
None |
Definition at line 548 of file stm32f7xx_hal_usart.h.
#define __HAL_USART_CLEAR_NEFLAG | ( | __HANDLE__ | ) | __HAL_USART_CLEAR_FLAG((__HANDLE__), USART_CLEAR_NEF) |
Clear the USART NE pending flag.
<strong>HANDLE</strong> | specifies the USART Handle. |
None |
Definition at line 449 of file stm32f7xx_hal_usart.h.
#define __HAL_USART_CLEAR_OREFLAG | ( | __HANDLE__ | ) | __HAL_USART_CLEAR_FLAG((__HANDLE__), USART_CLEAR_OREF) |
Clear the USART ORE pending flag.
<strong>HANDLE</strong> | specifies the USART Handle. |
None |
Definition at line 455 of file stm32f7xx_hal_usart.h.
#define __HAL_USART_CLEAR_PEFLAG | ( | __HANDLE__ | ) | __HAL_USART_CLEAR_FLAG((__HANDLE__), USART_CLEAR_PEF) |
Clear the USART PE pending flag.
<strong>HANDLE</strong> | specifies the USART Handle. |
None |
Definition at line 437 of file stm32f7xx_hal_usart.h.
#define __HAL_USART_DISABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR1 &= ~USART_CR1_UE) |
Disable USART.
<strong>HANDLE</strong> | specifies the USART Handle. |
None |
Definition at line 583 of file stm32f7xx_hal_usart.h.
#define __HAL_USART_DISABLE_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) |
Disable the specified USART interrupt.
<strong>HANDLE</strong> | specifies the USART Handle. |
<strong>INTERRUPT</strong> | specifies the USART interrupt source to disable. This parameter can be one of the following values:
|
None |
Definition at line 493 of file stm32f7xx_hal_usart.h.
#define __HAL_USART_ENABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR1 |= USART_CR1_UE) |
Enable USART.
<strong>HANDLE</strong> | specifies the USART Handle. |
None |
Definition at line 577 of file stm32f7xx_hal_usart.h.
#define __HAL_USART_ENABLE_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) |
Enable the specified USART interrupt.
<strong>HANDLE</strong> | specifies the USART Handle. |
<strong>INTERRUPT</strong> | specifies the USART interrupt source to enable. This parameter can be one of the following values:
|
None |
Definition at line 477 of file stm32f7xx_hal_usart.h.
#define __HAL_USART_GET_FLAG | ( | __HANDLE__, | |
__FLAG__ | |||
) | (((__HANDLE__)->Instance->ISR & (__FLAG__)) == (__FLAG__)) |
Check whether the specified USART flag is set or not.
<strong>HANDLE</strong> | specifies the USART Handle |
<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 416 of file stm32f7xx_hal_usart.h.
#define __HAL_USART_GET_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) |
Check whether the specified USART interrupt has occurred or not.
<strong>HANDLE</strong> | specifies the USART Handle. |
<strong>INTERRUPT</strong> | specifies the USART interrupt source to check. This parameter can be one of the following values:
|
The | new state of INTERRUPT (SET or RESET). |
Definition at line 512 of file stm32f7xx_hal_usart.h.
#define __HAL_USART_GET_IT_SOURCE | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) |
Check whether the specified USART interrupt source is enabled or not.
<strong>HANDLE</strong> | specifies the USART Handle. |
<strong>INTERRUPT</strong> | specifies the USART interrupt source to check. This parameter can be one of the following values:
|
The | new state of INTERRUPT (SET or RESET). |
Definition at line 529 of file stm32f7xx_hal_usart.h.
#define __HAL_USART_ONE_BIT_SAMPLE_DISABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR3 &= ~USART_CR3_ONEBIT) |
Disable the USART one bit sample method.
<strong>HANDLE</strong> | specifies the USART Handle. |
None |
Definition at line 571 of file stm32f7xx_hal_usart.h.
#define __HAL_USART_ONE_BIT_SAMPLE_ENABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR3|= USART_CR3_ONEBIT) |
Enable the USART one bit sample method.
<strong>HANDLE</strong> | specifies the USART Handle. |
None |
Definition at line 565 of file stm32f7xx_hal_usart.h.
#define __HAL_USART_RESET_HANDLE_STATE | ( | __HANDLE__ | ) | ((__HANDLE__)->State = HAL_USART_STATE_RESET) |
Reset USART handle state.
<strong>HANDLE</strong> | USART handle. |
None |
Definition at line 395 of file stm32f7xx_hal_usart.h.
#define __HAL_USART_SEND_REQ | ( | __HANDLE__, | |
__REQ__ | |||
) | ((__HANDLE__)->Instance->RQR |= (uint16_t)(__REQ__)) |
Set a specific USART request flag.
<strong>HANDLE</strong> | specifies the USART Handle. |
<strong>REQ</strong> | specifies the request flag to set. This parameter can be one of the following values:
|
None |
Definition at line 559 of file stm32f7xx_hal_usart.h.