Macros | |
#define | __HAL_SMARTCARD_CLEAR_FEFLAG(__HANDLE__) __HAL_SMARTCARD_CLEAR_PEFLAG(__HANDLE__) |
Clear the SMARTCARD FE pending flag. More... | |
#define | __HAL_SMARTCARD_CLEAR_FEFLAG(__HANDLE__) __HAL_SMARTCARD_CLEAR_FLAG((__HANDLE__), SMARTCARD_CLEAR_FEF) |
Clear the SMARTCARD FE pending flag. More... | |
#define | __HAL_SMARTCARD_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->SR = ~(__FLAG__)) |
Clear the specified Smartcard pending flags. More... | |
#define | __HAL_SMARTCARD_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ICR = (__FLAG__)) |
Clear the specified SMARTCARD pending flag. More... | |
#define | __HAL_SMARTCARD_CLEAR_IDLEFLAG(__HANDLE__) __HAL_SMARTCARD_CLEAR_PEFLAG(__HANDLE__) |
Clear the SMARTCARD IDLE pending flag. More... | |
#define | __HAL_SMARTCARD_CLEAR_IDLEFLAG(__HANDLE__) __HAL_SMARTCARD_CLEAR_FLAG((__HANDLE__), SMARTCARD_CLEAR_IDLEF) |
Clear the SMARTCARD IDLE pending flag. More... | |
#define | __HAL_SMARTCARD_CLEAR_IT(__HANDLE__, __IT_CLEAR__) ((__HANDLE__)->Instance->ICR |= (uint32_t)(__IT_CLEAR__)) |
Clear the specified SMARTCARD ISR flag, in setting the proper ICR register flag. More... | |
#define | __HAL_SMARTCARD_CLEAR_NEFLAG(__HANDLE__) __HAL_SMARTCARD_CLEAR_PEFLAG(__HANDLE__) |
Clear the SMARTCARD NE pending flag. More... | |
#define | __HAL_SMARTCARD_CLEAR_NEFLAG(__HANDLE__) __HAL_SMARTCARD_CLEAR_FLAG((__HANDLE__), SMARTCARD_CLEAR_NEF) |
Clear the SMARTCARD NE pending flag. More... | |
#define | __HAL_SMARTCARD_CLEAR_OREFLAG(__HANDLE__) __HAL_SMARTCARD_CLEAR_PEFLAG(__HANDLE__) |
Clear the SMARTCARD ORE pending flag. More... | |
#define | __HAL_SMARTCARD_CLEAR_OREFLAG(__HANDLE__) __HAL_SMARTCARD_CLEAR_FLAG((__HANDLE__), SMARTCARD_CLEAR_OREF) |
Clear the SMARTCARD ORE pending flag. More... | |
#define | __HAL_SMARTCARD_CLEAR_PEFLAG(__HANDLE__) |
Clear the SMARTCARD PE pending flag. More... | |
#define | __HAL_SMARTCARD_CLEAR_PEFLAG(__HANDLE__) __HAL_SMARTCARD_CLEAR_FLAG((__HANDLE__), SMARTCARD_CLEAR_PEF) |
Clear the SMARTCARD PE pending flag. More... | |
#define | __HAL_SMARTCARD_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 &= ~USART_CR1_UE) |
Disable the USART associated to the SMARTCARD Handle. More... | |
#define | __HAL_SMARTCARD_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 &= ~USART_CR1_UE) |
Disable the USART associated to the SMARTCARD Handle. More... | |
#define | __HAL_SMARTCARD_DISABLE_IT(__HANDLE__, __INTERRUPT__) |
Disable the specified SmartCard interrupt. More... | |
#define | __HAL_SMARTCARD_DISABLE_IT(__HANDLE__, __INTERRUPT__) |
Disable the specified SmartCard interrupt. More... | |
#define | __HAL_SMARTCARD_DMA_REQUEST_DISABLE(__HANDLE__, __REQUEST__) ((__HANDLE__)->Instance->CR3 &= ~(__REQUEST__)) |
Macros to disable the SmartCard DMA request. More... | |
#define | __HAL_SMARTCARD_DMA_REQUEST_ENABLE(__HANDLE__, __REQUEST__) ((__HANDLE__)->Instance->CR3 |= (__REQUEST__)) |
Macros to enable the SmartCard DMA request. More... | |
#define | __HAL_SMARTCARD_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 |= USART_CR1_UE) |
Enable the USART associated to the SMARTCARD Handle. More... | |
#define | __HAL_SMARTCARD_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 |= USART_CR1_UE) |
Enable the USART associated to the SMARTCARD Handle. More... | |
#define | __HAL_SMARTCARD_ENABLE_IT(__HANDLE__, __INTERRUPT__) |
Enable the specified SmartCard interrupt. More... | |
#define | __HAL_SMARTCARD_ENABLE_IT(__HANDLE__, __INTERRUPT__) |
Enable the specified SmartCard interrupt. More... | |
#define | __HAL_SMARTCARD_FLUSH_DRREGISTER(__HANDLE__) ((__HANDLE__)->Instance->DR) |
Flush the Smartcard DR register. More... | |
#define | __HAL_SMARTCARD_FLUSH_DRREGISTER(__HANDLE__) |
Flush the Smartcard Data registers. More... | |
#define | __HAL_SMARTCARD_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->SR & (__FLAG__)) == (__FLAG__)) |
Check whether the specified Smartcard flag is set or not. More... | |
#define | __HAL_SMARTCARD_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->ISR & (__FLAG__)) == (__FLAG__)) |
Check whether the specified Smartcard flag is set or not. More... | |
#define | __HAL_SMARTCARD_GET_IT(__HANDLE__, __INTERRUPT__) |
Check whether the specified SmartCard interrupt has occurred or not. More... | |
#define | __HAL_SMARTCARD_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) |
Check whether the specified SmartCard interrupt source is enabled or not. More... | |
#define | __HAL_SMARTCARD_GET_IT_SOURCE(__HANDLE__, __IT__) (((((__IT__) >> 28U) == SMARTCARD_CR1_REG_INDEX)? (__HANDLE__)->Instance->CR1: (__HANDLE__)->Instance->CR3) & (((uint32_t)(__IT__)) & SMARTCARD_IT_MASK)) |
Checks whether the specified SmartCard interrupt has occurred or not. More... | |
#define | __HAL_SMARTCARD_ONE_BIT_SAMPLE_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3 &= (uint16_t)~((uint16_t)USART_CR3_ONEBIT)) |
Macro to disable the SMARTCARD's one bit sample method. More... | |
#define | __HAL_SMARTCARD_ONE_BIT_SAMPLE_DISABLE(__HANDLE__) |
Disable the SMARTCARD one bit sample method. More... | |
#define | __HAL_SMARTCARD_ONE_BIT_SAMPLE_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3|= USART_CR3_ONEBIT) |
Macro to enable the SMARTCARD's one bit sample method. More... | |
#define | __HAL_SMARTCARD_ONE_BIT_SAMPLE_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3|= USART_CR3_ONEBIT) |
Enable the SMARTCARD one bit sample method. More... | |
#define | __HAL_SMARTCARD_RESET_HANDLE_STATE(__HANDLE__) |
Reset SMARTCARD handle gstate & RxState. More... | |
#define | __HAL_SMARTCARD_RESET_HANDLE_STATE(__HANDLE__) |
Reset SMARTCARD handle states. More... | |
#define | __HAL_SMARTCARD_SEND_REQ(__HANDLE__, __REQ__) ((__HANDLE__)->Instance->RQR |= (uint16_t)(__REQ__)) |
Set a specific SMARTCARD request flag. More... | |
#define __HAL_SMARTCARD_CLEAR_FEFLAG | ( | __HANDLE__ | ) | __HAL_SMARTCARD_CLEAR_PEFLAG(__HANDLE__) |
Clear the SMARTCARD FE pending flag.
<strong>HANDLE</strong> | specifies the USART Handle. SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device). |
None |
Definition at line 500 of file stm32f4xx_hal_smartcard.h.
#define __HAL_SMARTCARD_CLEAR_FEFLAG | ( | __HANDLE__ | ) | __HAL_SMARTCARD_CLEAR_FLAG((__HANDLE__), SMARTCARD_CLEAR_FEF) |
Clear the SMARTCARD FE pending flag.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. |
None |
Definition at line 576 of file stm32f7xx_hal_smartcard.h.
#define __HAL_SMARTCARD_CLEAR_FLAG | ( | __HANDLE__, | |
__FLAG__ | |||
) | ((__HANDLE__)->Instance->SR = ~(__FLAG__)) |
Clear the specified Smartcard pending flags.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device). |
<strong>FLAG</strong> | specifies the flag to check. This parameter can be any combination of the following values:
|
None |
Definition at line 480 of file stm32f4xx_hal_smartcard.h.
#define __HAL_SMARTCARD_CLEAR_FLAG | ( | __HANDLE__, | |
__FLAG__ | |||
) | ((__HANDLE__)->Instance->ICR = (__FLAG__)) |
Clear the specified SMARTCARD pending flag.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. |
<strong>FLAG</strong> | specifies the flag to check. This parameter can be any combination of the following values:
|
None |
Definition at line 564 of file stm32f7xx_hal_smartcard.h.
#define __HAL_SMARTCARD_CLEAR_IDLEFLAG | ( | __HANDLE__ | ) | __HAL_SMARTCARD_CLEAR_PEFLAG(__HANDLE__) |
Clear the SMARTCARD IDLE pending flag.
<strong>HANDLE</strong> | specifies the USART Handle. SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device). |
None |
Definition at line 521 of file stm32f4xx_hal_smartcard.h.
#define __HAL_SMARTCARD_CLEAR_IDLEFLAG | ( | __HANDLE__ | ) | __HAL_SMARTCARD_CLEAR_FLAG((__HANDLE__), SMARTCARD_CLEAR_IDLEF) |
Clear the SMARTCARD IDLE pending flag.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. |
None |
Definition at line 594 of file stm32f7xx_hal_smartcard.h.
#define __HAL_SMARTCARD_CLEAR_IT | ( | __HANDLE__, | |
__IT_CLEAR__ | |||
) | ((__HANDLE__)->Instance->ICR |= (uint32_t)(__IT_CLEAR__)) |
Clear the specified SMARTCARD ISR flag, in setting the proper ICR register flag.
<strong>HANDLE</strong> | specifies the SMARTCARD 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 708 of file stm32f7xx_hal_smartcard.h.
#define __HAL_SMARTCARD_CLEAR_NEFLAG | ( | __HANDLE__ | ) | __HAL_SMARTCARD_CLEAR_PEFLAG(__HANDLE__) |
Clear the SMARTCARD NE pending flag.
<strong>HANDLE</strong> | specifies the USART Handle. SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device). |
None |
Definition at line 507 of file stm32f4xx_hal_smartcard.h.
#define __HAL_SMARTCARD_CLEAR_NEFLAG | ( | __HANDLE__ | ) | __HAL_SMARTCARD_CLEAR_FLAG((__HANDLE__), SMARTCARD_CLEAR_NEF) |
Clear the SMARTCARD NE pending flag.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. |
None |
Definition at line 582 of file stm32f7xx_hal_smartcard.h.
#define __HAL_SMARTCARD_CLEAR_OREFLAG | ( | __HANDLE__ | ) | __HAL_SMARTCARD_CLEAR_PEFLAG(__HANDLE__) |
Clear the SMARTCARD ORE pending flag.
<strong>HANDLE</strong> | specifies the USART Handle. SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device). |
None |
Definition at line 514 of file stm32f4xx_hal_smartcard.h.
#define __HAL_SMARTCARD_CLEAR_OREFLAG | ( | __HANDLE__ | ) | __HAL_SMARTCARD_CLEAR_FLAG((__HANDLE__), SMARTCARD_CLEAR_OREF) |
Clear the SMARTCARD ORE pending flag.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. |
None |
Definition at line 588 of file stm32f7xx_hal_smartcard.h.
#define __HAL_SMARTCARD_CLEAR_PEFLAG | ( | __HANDLE__ | ) |
Clear the SMARTCARD PE pending flag.
<strong>HANDLE</strong> | specifies the USART Handle. SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device). |
None |
Definition at line 487 of file stm32f4xx_hal_smartcard.h.
#define __HAL_SMARTCARD_CLEAR_PEFLAG | ( | __HANDLE__ | ) | __HAL_SMARTCARD_CLEAR_FLAG((__HANDLE__), SMARTCARD_CLEAR_PEF) |
Clear the SMARTCARD PE pending flag.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. |
None |
Definition at line 570 of file stm32f7xx_hal_smartcard.h.
#define __HAL_SMARTCARD_DISABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR1 &= ~USART_CR1_UE) |
Disable the USART associated to the SMARTCARD Handle.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device). |
None |
Definition at line 593 of file stm32f4xx_hal_smartcard.h.
#define __HAL_SMARTCARD_DISABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR1 &= ~USART_CR1_UE) |
Disable the USART associated to the SMARTCARD Handle.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. |
None |
Definition at line 743 of file stm32f7xx_hal_smartcard.h.
#define __HAL_SMARTCARD_DISABLE_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) |
Disable the specified SmartCard interrupt.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device). |
<strong>INTERRUPT</strong> | specifies the SMARTCARD interrupt to disable. This parameter can be one of the following values:
|
None |
Definition at line 552 of file stm32f4xx_hal_smartcard.h.
#define __HAL_SMARTCARD_DISABLE_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) |
Disable the specified SmartCard interrupt.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. |
<strong>INTERRUPT</strong> | specifies the SMARTCARD interrupt to disable. This parameter can be one of the following values:
|
None |
Definition at line 651 of file stm32f7xx_hal_smartcard.h.
#define __HAL_SMARTCARD_DMA_REQUEST_DISABLE | ( | __HANDLE__, | |
__REQUEST__ | |||
) | ((__HANDLE__)->Instance->CR3 &= ~(__REQUEST__)) |
Macros to disable the SmartCard DMA request.
<strong>HANDLE</strong> | specifies the SmartCard Handle. |
<strong>REQUEST</strong> | specifies the SmartCard DMA request. This parameter can be one of the following values:
|
None |
Definition at line 613 of file stm32f4xx_hal_smartcard.h.
#define __HAL_SMARTCARD_DMA_REQUEST_ENABLE | ( | __HANDLE__, | |
__REQUEST__ | |||
) | ((__HANDLE__)->Instance->CR3 |= (__REQUEST__)) |
Macros to enable the SmartCard DMA request.
<strong>HANDLE</strong> | specifies the SmartCard Handle. |
<strong>REQUEST</strong> | specifies the SmartCard DMA request. This parameter can be one of the following values:
|
None |
Definition at line 603 of file stm32f4xx_hal_smartcard.h.
#define __HAL_SMARTCARD_ENABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR1 |= USART_CR1_UE) |
Enable the USART associated to the SMARTCARD Handle.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device). |
None |
Definition at line 586 of file stm32f4xx_hal_smartcard.h.
#define __HAL_SMARTCARD_ENABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR1 |= USART_CR1_UE) |
Enable the USART associated to the SMARTCARD Handle.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. |
None |
Definition at line 737 of file stm32f7xx_hal_smartcard.h.
#define __HAL_SMARTCARD_ENABLE_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) |
Enable the specified SmartCard interrupt.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device). |
<strong>INTERRUPT</strong> | specifies the SMARTCARD interrupt to enable. This parameter can be one of the following values:
|
None |
Definition at line 536 of file stm32f4xx_hal_smartcard.h.
#define __HAL_SMARTCARD_ENABLE_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) |
Enable the specified SmartCard interrupt.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. |
<strong>INTERRUPT</strong> | specifies the SMARTCARD interrupt to enable. This parameter can be one of the following values:
|
None |
Definition at line 632 of file stm32f7xx_hal_smartcard.h.
#define __HAL_SMARTCARD_FLUSH_DRREGISTER | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->DR) |
Flush the Smartcard DR register.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device). |
None |
Definition at line 444 of file stm32f4xx_hal_smartcard.h.
#define __HAL_SMARTCARD_FLUSH_DRREGISTER | ( | __HANDLE__ | ) |
Flush the Smartcard Data registers.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. |
None |
Definition at line 543 of file stm32f7xx_hal_smartcard.h.
#define __HAL_SMARTCARD_GET_FLAG | ( | __HANDLE__, | |
__FLAG__ | |||
) | (((__HANDLE__)->Instance->SR & (__FLAG__)) == (__FLAG__)) |
Check whether the specified Smartcard flag is set or not.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device). |
<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 461 of file stm32f4xx_hal_smartcard.h.
#define __HAL_SMARTCARD_GET_FLAG | ( | __HANDLE__, | |
__FLAG__ | |||
) | (((__HANDLE__)->Instance->ISR & (__FLAG__)) == (__FLAG__)) |
Check whether the specified Smartcard flag is set or not.
<strong>HANDLE</strong> | specifies the SMARTCARD 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 615 of file stm32f7xx_hal_smartcard.h.
#define __HAL_SMARTCARD_GET_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) |
Check whether the specified SmartCard interrupt has occurred or not.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. |
<strong>INTERRUPT</strong> | specifies the SMARTCARD interrupt to check. This parameter can be one of the following values:
|
The | new state of INTERRUPT (SET or RESET). |
Definition at line 670 of file stm32f7xx_hal_smartcard.h.
#define __HAL_SMARTCARD_GET_IT_SOURCE | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) |
Check whether the specified SmartCard interrupt source is enabled or not.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. |
<strong>INTERRUPT</strong> | specifies the SMARTCARD interrupt source to check. This parameter can be one of the following values:
|
The | new state of INTERRUPT (SET or RESET). |
Definition at line 688 of file stm32f7xx_hal_smartcard.h.
#define __HAL_SMARTCARD_GET_IT_SOURCE | ( | __HANDLE__, | |
__IT__ | |||
) | (((((__IT__) >> 28U) == SMARTCARD_CR1_REG_INDEX)? (__HANDLE__)->Instance->CR1: (__HANDLE__)->Instance->CR3) & (((uint32_t)(__IT__)) & SMARTCARD_IT_MASK)) |
Checks whether the specified SmartCard interrupt has occurred or not.
<strong>HANDLE</strong> | specifies the SmartCard Handle. |
<strong>IT</strong> | specifies the SMARTCARD interrupt source to check. This parameter can be one of the following values:
|
The | new state of IT (TRUE or FALSE). |
Definition at line 567 of file stm32f4xx_hal_smartcard.h.
#define __HAL_SMARTCARD_ONE_BIT_SAMPLE_DISABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR3 &= (uint16_t)~((uint16_t)USART_CR3_ONEBIT)) |
Macro to disable the SMARTCARD's one bit sample method.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. |
None |
Definition at line 579 of file stm32f4xx_hal_smartcard.h.
#define __HAL_SMARTCARD_ONE_BIT_SAMPLE_DISABLE | ( | __HANDLE__ | ) |
Disable the SMARTCARD one bit sample method.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. |
None |
Definition at line 730 of file stm32f7xx_hal_smartcard.h.
#define __HAL_SMARTCARD_ONE_BIT_SAMPLE_ENABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR3|= USART_CR3_ONEBIT) |
Macro to enable the SMARTCARD's one bit sample method.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. |
None |
Definition at line 573 of file stm32f4xx_hal_smartcard.h.
#define __HAL_SMARTCARD_ONE_BIT_SAMPLE_ENABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR3|= USART_CR3_ONEBIT) |
Enable the SMARTCARD one bit sample method.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. |
None |
Definition at line 724 of file stm32f7xx_hal_smartcard.h.
#define __HAL_SMARTCARD_RESET_HANDLE_STATE | ( | __HANDLE__ | ) |
Reset SMARTCARD handle gstate & RxState.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device). |
None |
Definition at line 433 of file stm32f4xx_hal_smartcard.h.
#define __HAL_SMARTCARD_RESET_HANDLE_STATE | ( | __HANDLE__ | ) |
Reset SMARTCARD handle states.
<strong>HANDLE</strong> | SMARTCARD handle. |
None |
Definition at line 533 of file stm32f7xx_hal_smartcard.h.
#define __HAL_SMARTCARD_SEND_REQ | ( | __HANDLE__, | |
__REQ__ | |||
) | ((__HANDLE__)->Instance->RQR |= (uint16_t)(__REQ__)) |
Set a specific SMARTCARD request flag.
<strong>HANDLE</strong> | specifies the SMARTCARD Handle. |
<strong>REQ</strong> | specifies the request flag to set This parameter can be one of the following values:
|
None |
Definition at line 718 of file stm32f7xx_hal_smartcard.h.