STM32L4xx_HAL_Driver  1.14.0
Extended Peripheral IO operation functions

SMARTCARD Transmit and Receive functions. More...

Functions

void HAL_SMARTCARDEx_RxFifoFullCallback (SMARTCARD_HandleTypeDef *hsmartcard)
 SMARTCARD RX Fifo full callback. More...
 
void HAL_SMARTCARDEx_TxFifoEmptyCallback (SMARTCARD_HandleTypeDef *hsmartcard)
 SMARTCARD TX Fifo empty callback. More...
 

Detailed Description

SMARTCARD Transmit and Receive functions.

 ===============================================================================
                      ##### IO operation functions #####
 ===============================================================================
    [..]
    This subsection provides a set of FIFO mode related callback functions.

    (#) TX/RX Fifos Callbacks:
        (+) HAL_SMARTCARDEx_RxFifoFullCallback()
        (+) HAL_SMARTCARDEx_TxFifoEmptyCallback()

Function Documentation

◆ HAL_SMARTCARDEx_RxFifoFullCallback()

__weak void HAL_SMARTCARDEx_RxFifoFullCallback ( SMARTCARD_HandleTypeDef hsmartcard)

SMARTCARD RX Fifo full callback.

Parameters
hsmartcardPointer to a SMARTCARD_HandleTypeDef structure that contains the configuration information for the specified SMARTCARD module.
Return values
None

Definition at line 207 of file stm32l4xx_hal_smartcard_ex.c.

208 {
209  /* Prevent unused argument(s) compilation warning */
210  UNUSED(hsmartcard);
211 
212  /* NOTE : This function should not be modified, when the callback is needed,
213  the HAL_SMARTCARDEx_RxFifoFullCallback can be implemented in the user file.
214  */
215 }

◆ HAL_SMARTCARDEx_TxFifoEmptyCallback()

__weak void HAL_SMARTCARDEx_TxFifoEmptyCallback ( SMARTCARD_HandleTypeDef hsmartcard)

SMARTCARD TX Fifo empty callback.

Parameters
hsmartcardPointer to a SMARTCARD_HandleTypeDef structure that contains the configuration information for the specified SMARTCARD module.
Return values
None

Definition at line 223 of file stm32l4xx_hal_smartcard_ex.c.

224 {
225  /* Prevent unused argument(s) compilation warning */
226  UNUSED(hsmartcard);
227 
228  /* NOTE : This function should not be modified, when the callback is needed,
229  the HAL_SMARTCARDEx_TxFifoEmptyCallback can be implemented in the user file.
230  */
231 }