STM32F103xB HAL User Manual
|
Defines | |
#define | __HAL_USART_RESET_HANDLE_STATE(__HANDLE__) |
Reset USART handle state. | |
#define | __HAL_USART_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->SR & (__FLAG__)) == (__FLAG__)) |
Check whether the specified USART flag is set or not. | |
#define | __HAL_USART_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->SR = ~(__FLAG__)) |
Clear the specified USART pending flags. | |
#define | __HAL_USART_CLEAR_PEFLAG(__HANDLE__) |
Clear the USART PE pending flag. | |
#define | __HAL_USART_CLEAR_FEFLAG(__HANDLE__) __HAL_USART_CLEAR_PEFLAG(__HANDLE__) |
Clear the USART FE pending flag. | |
#define | __HAL_USART_CLEAR_NEFLAG(__HANDLE__) __HAL_USART_CLEAR_PEFLAG(__HANDLE__) |
Clear the USART NE pending flag. | |
#define | __HAL_USART_CLEAR_OREFLAG(__HANDLE__) __HAL_USART_CLEAR_PEFLAG(__HANDLE__) |
Clear the USART ORE pending flag. | |
#define | __HAL_USART_CLEAR_IDLEFLAG(__HANDLE__) __HAL_USART_CLEAR_PEFLAG(__HANDLE__) |
Clear the USART IDLE pending flag. | |
#define | __HAL_USART_ENABLE_IT(__HANDLE__, __INTERRUPT__) |
Enables or disables the specified USART interrupts. | |
#define | __HAL_USART_DISABLE_IT(__HANDLE__, __INTERRUPT__) |
#define | __HAL_USART_GET_IT_SOURCE(__HANDLE__, __IT__) |
Checks whether the specified USART interrupt has occurred or not. | |
#define | __HAL_USART_ONE_BIT_SAMPLE_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3 |= USART_CR3_ONEBIT) |
Macro to enable the USART's one bit sample method. | |
#define | __HAL_USART_ONE_BIT_SAMPLE_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3 &= (uint16_t)~((uint16_t)USART_CR3_ONEBIT)) |
Macro to disable the USART's one bit sample method. | |
#define | __HAL_USART_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 |= USART_CR1_UE) |
Enable USART. | |
#define | __HAL_USART_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 &= ~USART_CR1_UE) |
Disable USART. |
#define __HAL_USART_CLEAR_FEFLAG | ( | __HANDLE__ | ) | __HAL_USART_CLEAR_PEFLAG(__HANDLE__) |
Clear the USART FE pending flag.
__HANDLE__ | specifies the USART Handle. USART Handle selects the USARTx peripheral (USART availability and x value depending on device). |
None |
Definition at line 395 of file stm32f1xx_hal_usart.h.
#define __HAL_USART_CLEAR_FLAG | ( | __HANDLE__, | |
__FLAG__ | |||
) | ((__HANDLE__)->Instance->SR = ~(__FLAG__)) |
Clear the specified USART pending flags.
__HANDLE__ | specifies the USART Handle. USART Handle selects the USARTx peripheral (USART availability and x value depending on device). |
__FLAG__ | specifies the flag to check. This parameter can be any combination of the following values:
|
None |
Definition at line 375 of file stm32f1xx_hal_usart.h.
Referenced by HAL_USART_Transmit_DMA(), and HAL_USART_TransmitReceive_DMA().
#define __HAL_USART_CLEAR_IDLEFLAG | ( | __HANDLE__ | ) | __HAL_USART_CLEAR_PEFLAG(__HANDLE__) |
Clear the USART IDLE pending flag.
__HANDLE__ | specifies the USART Handle. USART Handle selects the USARTx peripheral (USART availability and x value depending on device). |
None |
Definition at line 416 of file stm32f1xx_hal_usart.h.
#define __HAL_USART_CLEAR_NEFLAG | ( | __HANDLE__ | ) | __HAL_USART_CLEAR_PEFLAG(__HANDLE__) |
Clear the USART NE pending flag.
__HANDLE__ | specifies the USART Handle. USART Handle selects the USARTx peripheral (USART availability and x value depending on device). |
None |
Definition at line 402 of file stm32f1xx_hal_usart.h.
#define __HAL_USART_CLEAR_OREFLAG | ( | __HANDLE__ | ) | __HAL_USART_CLEAR_PEFLAG(__HANDLE__) |
Clear the USART ORE pending flag.
__HANDLE__ | specifies the USART Handle. USART Handle selects the USARTx peripheral (USART availability and x value depending on device). |
None |
Definition at line 409 of file stm32f1xx_hal_usart.h.
Referenced by HAL_USART_Receive_DMA(), and HAL_USART_TransmitReceive_DMA().
#define __HAL_USART_CLEAR_PEFLAG | ( | __HANDLE__ | ) |
do{ \ __IO uint32_t tmpreg = 0x00U; \ tmpreg = (__HANDLE__)->Instance->SR; \ tmpreg = (__HANDLE__)->Instance->DR; \ UNUSED(tmpreg); \ } while(0U)
Clear the USART PE pending flag.
__HANDLE__ | specifies the USART Handle. USART Handle selects the USARTx peripheral (USART availability and x value depending on device). |
None |
Definition at line 382 of file stm32f1xx_hal_usart.h.
#define __HAL_USART_DISABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR1 &= ~USART_CR1_UE) |
Disable USART.
__HANDLE__ | specifies the USART Handle. USART Handle selects the USARTx peripheral (USART availability and x value depending on device). |
None |
Definition at line 478 of file stm32f1xx_hal_usart.h.
Referenced by HAL_USART_DeInit().
#define __HAL_USART_DISABLE_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) |
((((__INTERRUPT__) >> 28U) == USART_CR1_REG_INDEX)? ((__HANDLE__)->Instance->CR1 &= ~((__INTERRUPT__) & USART_IT_MASK)): \ (((__INTERRUPT__) >> 28U) == USART_CR2_REG_INDEX)? ((__HANDLE__)->Instance->CR2 &= ~((__INTERRUPT__) & USART_IT_MASK)): \ ((__HANDLE__)->Instance->CR3 &= ~ ((__INTERRUPT__) & USART_IT_MASK)))
Definition at line 434 of file stm32f1xx_hal_usart.h.
#define __HAL_USART_ENABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR1 |= USART_CR1_UE) |
Enable USART.
__HANDLE__ | specifies the USART Handle. USART Handle selects the USARTx peripheral (USART availability and x value depending on device). |
None |
Definition at line 471 of file stm32f1xx_hal_usart.h.
Referenced by HAL_USART_Init().
#define __HAL_USART_ENABLE_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) |
((((__INTERRUPT__) >> 28U) == USART_CR1_REG_INDEX)? ((__HANDLE__)->Instance->CR1 |= ((__INTERRUPT__) & USART_IT_MASK)): \ (((__INTERRUPT__) >> 28U) == USART_CR2_REG_INDEX)? ((__HANDLE__)->Instance->CR2 |= ((__INTERRUPT__) & USART_IT_MASK)): \ ((__HANDLE__)->Instance->CR3 |= ((__INTERRUPT__) & USART_IT_MASK)))
Enables or disables the specified USART interrupts.
__HANDLE__ | specifies the USART Handle. USART Handle selects the USARTx peripheral (USART availability and x value depending on device). |
__INTERRUPT__ | specifies the USART interrupt source to check. This parameter can be one of the following values:
|
None |
Definition at line 431 of file stm32f1xx_hal_usart.h.
#define __HAL_USART_GET_FLAG | ( | __HANDLE__, | |
__FLAG__ | |||
) | (((__HANDLE__)->Instance->SR & (__FLAG__)) == (__FLAG__)) |
Check whether the specified USART flag is set or not.
__HANDLE__ | specifies the USART Handle. USART Handle selects the USARTx peripheral (USART availability and x value depending on device). |
__FLAG__ | 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 354 of file stm32f1xx_hal_usart.h.
Referenced by USART_TransmitReceive_IT(), and USART_WaitOnFlagUntilTimeout().
#define __HAL_USART_GET_IT_SOURCE | ( | __HANDLE__, | |
__IT__ | |||
) |
(((((__IT__) >> 28U) == USART_CR1_REG_INDEX)? (__HANDLE__)->Instance->CR1:(((((uint32_t)(__IT__)) >> 28U) == USART_CR2_REG_INDEX)? \ (__HANDLE__)->Instance->CR2 : (__HANDLE__)->Instance->CR3)) & (((uint32_t)(__IT__)) & USART_IT_MASK))
Checks whether the specified USART interrupt has occurred or not.
__HANDLE__ | specifies the USART Handle. USART Handle selects the USARTx peripheral (USART availability and x value depending on device). |
__IT__ | specifies the USART interrupt source to check. This parameter can be one of the following values:
|
The | new state of __IT__ (TRUE or FALSE). |
Definition at line 451 of file stm32f1xx_hal_usart.h.
#define __HAL_USART_ONE_BIT_SAMPLE_DISABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR3 &= (uint16_t)~((uint16_t)USART_CR3_ONEBIT)) |
Macro to disable the USART's one bit sample method.
__HANDLE__ | specifies the USART Handle. |
None |
Definition at line 464 of file stm32f1xx_hal_usart.h.
#define __HAL_USART_ONE_BIT_SAMPLE_ENABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR3 |= USART_CR3_ONEBIT) |
Macro to enable the USART's one bit sample method.
__HANDLE__ | specifies the USART Handle. |
None |
Definition at line 458 of file stm32f1xx_hal_usart.h.
#define __HAL_USART_RESET_HANDLE_STATE | ( | __HANDLE__ | ) |
do{ \ (__HANDLE__)->State = HAL_USART_STATE_RESET; \ (__HANDLE__)->MspInitCallback = NULL; \ (__HANDLE__)->MspDeInitCallback = NULL; \ } while(0U)
Reset USART handle state.
__HANDLE__ | specifies the USART Handle. USART Handle selects the USARTx peripheral (USART availability and x value depending on device). |
None |
Definition at line 330 of file stm32f1xx_hal_usart.h.