Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Committer:
Kojto
Date:
Thu Oct 29 08:40:18 2015 +0000
Revision:
109:9296ab0bfc11
Release 109  of the mbed library

Changes:
- new platforms - NUCLEO_F042K6, WIZNWIKI_W7500ECO
- MTS targets - bootloaders update to 0.1.1
- STM F7 - RTC enable fixes
- STM F4 - i2c pending stop before start fix
- STM all targets - analogout normalization fix

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 109:9296ab0bfc11 1 /**
Kojto 109:9296ab0bfc11 2 ******************************************************************************
Kojto 109:9296ab0bfc11 3 * @file stm32f0xx_hal_smartcard.h
Kojto 109:9296ab0bfc11 4 * @author MCD Application Team
Kojto 109:9296ab0bfc11 5 * @version V1.3.0
Kojto 109:9296ab0bfc11 6 * @date 26-June-2015
Kojto 109:9296ab0bfc11 7 * @brief Header file of SMARTCARD HAL module.
Kojto 109:9296ab0bfc11 8 ******************************************************************************
Kojto 109:9296ab0bfc11 9 * @attention
Kojto 109:9296ab0bfc11 10 *
Kojto 109:9296ab0bfc11 11 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
Kojto 109:9296ab0bfc11 12 *
Kojto 109:9296ab0bfc11 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 109:9296ab0bfc11 14 * are permitted provided that the following conditions are met:
Kojto 109:9296ab0bfc11 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 109:9296ab0bfc11 16 * this list of conditions and the following disclaimer.
Kojto 109:9296ab0bfc11 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 109:9296ab0bfc11 18 * this list of conditions and the following disclaimer in the documentation
Kojto 109:9296ab0bfc11 19 * and/or other materials provided with the distribution.
Kojto 109:9296ab0bfc11 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 109:9296ab0bfc11 21 * may be used to endorse or promote products derived from this software
Kojto 109:9296ab0bfc11 22 * without specific prior written permission.
Kojto 109:9296ab0bfc11 23 *
Kojto 109:9296ab0bfc11 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 109:9296ab0bfc11 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 109:9296ab0bfc11 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 109:9296ab0bfc11 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 109:9296ab0bfc11 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 109:9296ab0bfc11 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 109:9296ab0bfc11 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 109:9296ab0bfc11 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 109:9296ab0bfc11 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 109:9296ab0bfc11 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 109:9296ab0bfc11 34 *
Kojto 109:9296ab0bfc11 35 ******************************************************************************
Kojto 109:9296ab0bfc11 36 */
Kojto 109:9296ab0bfc11 37
Kojto 109:9296ab0bfc11 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 109:9296ab0bfc11 39 #ifndef __STM32F0xx_HAL_SMARTCARD_H
Kojto 109:9296ab0bfc11 40 #define __STM32F0xx_HAL_SMARTCARD_H
Kojto 109:9296ab0bfc11 41
Kojto 109:9296ab0bfc11 42 #ifdef __cplusplus
Kojto 109:9296ab0bfc11 43 extern "C" {
Kojto 109:9296ab0bfc11 44 #endif
Kojto 109:9296ab0bfc11 45
Kojto 109:9296ab0bfc11 46 #if !defined(STM32F030x6) && !defined(STM32F030x8) && !defined(STM32F070x6) && !defined(STM32F070xB) && !defined(STM32F030xC)
Kojto 109:9296ab0bfc11 47
Kojto 109:9296ab0bfc11 48 /* Includes ------------------------------------------------------------------*/
Kojto 109:9296ab0bfc11 49 #include "stm32f0xx_hal_def.h"
Kojto 109:9296ab0bfc11 50
Kojto 109:9296ab0bfc11 51 /** @addtogroup STM32F0xx_HAL_Driver
Kojto 109:9296ab0bfc11 52 * @{
Kojto 109:9296ab0bfc11 53 */
Kojto 109:9296ab0bfc11 54
Kojto 109:9296ab0bfc11 55 /** @addtogroup SMARTCARD
Kojto 109:9296ab0bfc11 56 * @{
Kojto 109:9296ab0bfc11 57 */
Kojto 109:9296ab0bfc11 58
Kojto 109:9296ab0bfc11 59 /* Exported types ------------------------------------------------------------*/
Kojto 109:9296ab0bfc11 60 /** @defgroup SMARTCARD_Exported_Types SMARTCARD Exported Types
Kojto 109:9296ab0bfc11 61 * @{
Kojto 109:9296ab0bfc11 62 */
Kojto 109:9296ab0bfc11 63
Kojto 109:9296ab0bfc11 64 /**
Kojto 109:9296ab0bfc11 65 * @brief SMARTCARD Init Structure definition
Kojto 109:9296ab0bfc11 66 */
Kojto 109:9296ab0bfc11 67 typedef struct
Kojto 109:9296ab0bfc11 68 {
Kojto 109:9296ab0bfc11 69 uint32_t BaudRate; /*!< Configures the SmartCard communication baud rate.
Kojto 109:9296ab0bfc11 70 The baud rate register is computed using the following formula:
Kojto 109:9296ab0bfc11 71 Baud Rate Register = ((PCLKx) / ((hsmartcard->Init.BaudRate))) */
Kojto 109:9296ab0bfc11 72
Kojto 109:9296ab0bfc11 73 uint32_t WordLength; /*!< Specifies the number of data bits transmitted or received in a frame.
Kojto 109:9296ab0bfc11 74 This parameter @ref SMARTCARD_Word_Length can only be set to 9 (8 data + 1 parity bits). */
Kojto 109:9296ab0bfc11 75
Kojto 109:9296ab0bfc11 76 uint32_t StopBits; /*!< Specifies the number of stop bits @ref SMARTCARD_Stop_Bits.
Kojto 109:9296ab0bfc11 77 Only 1.5 stop bits are authorized in SmartCard mode. */
Kojto 109:9296ab0bfc11 78
Kojto 109:9296ab0bfc11 79 uint16_t Parity; /*!< Specifies the parity mode.
Kojto 109:9296ab0bfc11 80 This parameter can be a value of @ref SMARTCARD_Parity
Kojto 109:9296ab0bfc11 81 @note The parity is enabled by default (PCE is forced to 1).
Kojto 109:9296ab0bfc11 82 Since the WordLength is forced to 8 bits + parity, M is
Kojto 109:9296ab0bfc11 83 forced to 1 and the parity bit is the 9th bit. */
Kojto 109:9296ab0bfc11 84
Kojto 109:9296ab0bfc11 85 uint16_t Mode; /*!< Specifies whether the Receive or Transmit mode is enabled or disabled.
Kojto 109:9296ab0bfc11 86 This parameter can be a value of @ref SMARTCARD_Mode */
Kojto 109:9296ab0bfc11 87
Kojto 109:9296ab0bfc11 88 uint16_t CLKPolarity; /*!< Specifies the steady state of the serial clock.
Kojto 109:9296ab0bfc11 89 This parameter can be a value of @ref SMARTCARD_Clock_Polarity */
Kojto 109:9296ab0bfc11 90
Kojto 109:9296ab0bfc11 91 uint16_t CLKPhase; /*!< Specifies the clock transition on which the bit capture is made.
Kojto 109:9296ab0bfc11 92 This parameter can be a value of @ref SMARTCARD_Clock_Phase */
Kojto 109:9296ab0bfc11 93
Kojto 109:9296ab0bfc11 94 uint16_t CLKLastBit; /*!< Specifies whether the clock pulse corresponding to the last transmitted
Kojto 109:9296ab0bfc11 95 data bit (MSB) has to be output on the SCLK pin in synchronous mode.
Kojto 109:9296ab0bfc11 96 This parameter can be a value of @ref SMARTCARD_Last_Bit */
Kojto 109:9296ab0bfc11 97
Kojto 109:9296ab0bfc11 98 uint16_t OneBitSampling; /*!< Specifies whether a single sample or three samples' majority vote is selected.
Kojto 109:9296ab0bfc11 99 Selecting the single sample method increases the receiver tolerance to clock
Kojto 109:9296ab0bfc11 100 deviations. This parameter can be a value of @ref SMARTCARD_OneBit_Sampling. */
Kojto 109:9296ab0bfc11 101
Kojto 109:9296ab0bfc11 102 uint8_t Prescaler; /*!< Specifies the SmartCard Prescaler */
Kojto 109:9296ab0bfc11 103
Kojto 109:9296ab0bfc11 104 uint8_t GuardTime; /*!< Specifies the SmartCard Guard Time */
Kojto 109:9296ab0bfc11 105
Kojto 109:9296ab0bfc11 106 uint16_t NACKEnable; /*!< Specifies whether the SmartCard NACK transmission is enabled
Kojto 109:9296ab0bfc11 107 in case of parity error.
Kojto 109:9296ab0bfc11 108 This parameter can be a value of @ref SMARTCARD_NACK_Enable */
Kojto 109:9296ab0bfc11 109
Kojto 109:9296ab0bfc11 110 uint32_t TimeOutEnable; /*!< Specifies whether the receiver timeout is enabled.
Kojto 109:9296ab0bfc11 111 This parameter can be a value of @ref SMARTCARD_Timeout_Enable*/
Kojto 109:9296ab0bfc11 112
Kojto 109:9296ab0bfc11 113 uint32_t TimeOutValue; /*!< Specifies the receiver time out value in number of baud blocks:
Kojto 109:9296ab0bfc11 114 it is used to implement the Character Wait Time (CWT) and
Kojto 109:9296ab0bfc11 115 Block Wait Time (BWT). It is coded over 24 bits. */
Kojto 109:9296ab0bfc11 116
Kojto 109:9296ab0bfc11 117 uint8_t BlockLength; /*!< Specifies the SmartCard Block Length in T=1 Reception mode.
Kojto 109:9296ab0bfc11 118 This parameter can be any value from 0x0 to 0xFF */
Kojto 109:9296ab0bfc11 119
Kojto 109:9296ab0bfc11 120 uint8_t AutoRetryCount; /*!< Specifies the SmartCard auto-retry count (number of retries in
Kojto 109:9296ab0bfc11 121 receive and transmit mode). When set to 0, retransmission is
Kojto 109:9296ab0bfc11 122 disabled. Otherwise, its maximum value is 7 (before signalling
Kojto 109:9296ab0bfc11 123 an error) */
Kojto 109:9296ab0bfc11 124
Kojto 109:9296ab0bfc11 125 }SMARTCARD_InitTypeDef;
Kojto 109:9296ab0bfc11 126
Kojto 109:9296ab0bfc11 127 /**
Kojto 109:9296ab0bfc11 128 * @brief SMARTCARD advanced features initalization structure definition
Kojto 109:9296ab0bfc11 129 */
Kojto 109:9296ab0bfc11 130 typedef struct
Kojto 109:9296ab0bfc11 131 {
Kojto 109:9296ab0bfc11 132 uint32_t AdvFeatureInit; /*!< Specifies which advanced SMARTCARD features is initialized. Several
Kojto 109:9296ab0bfc11 133 advanced features may be initialized at the same time. This parameter
Kojto 109:9296ab0bfc11 134 can be a value of @ref SMARTCARD_Advanced_Features_Initialization_Type */
Kojto 109:9296ab0bfc11 135
Kojto 109:9296ab0bfc11 136 uint32_t TxPinLevelInvert; /*!< Specifies whether the TX pin active level is inverted.
Kojto 109:9296ab0bfc11 137 This parameter can be a value of @ref SMARTCARD_Tx_Inv */
Kojto 109:9296ab0bfc11 138
Kojto 109:9296ab0bfc11 139 uint32_t RxPinLevelInvert; /*!< Specifies whether the RX pin active level is inverted.
Kojto 109:9296ab0bfc11 140 This parameter can be a value of @ref SMARTCARD_Rx_Inv */
Kojto 109:9296ab0bfc11 141
Kojto 109:9296ab0bfc11 142 uint32_t DataInvert; /*!< Specifies whether data are inverted (positive/direct logic
Kojto 109:9296ab0bfc11 143 vs negative/inverted logic).
Kojto 109:9296ab0bfc11 144 This parameter can be a value of @ref SMARTCARD_Data_Inv */
Kojto 109:9296ab0bfc11 145
Kojto 109:9296ab0bfc11 146 uint32_t Swap; /*!< Specifies whether TX and RX pins are swapped.
Kojto 109:9296ab0bfc11 147 This parameter can be a value of @ref SMARTCARD_Rx_Tx_Swap */
Kojto 109:9296ab0bfc11 148
Kojto 109:9296ab0bfc11 149 uint32_t OverrunDisable; /*!< Specifies whether the reception overrun detection is disabled.
Kojto 109:9296ab0bfc11 150 This parameter can be a value of @ref SMARTCARD_Overrun_Disable */
Kojto 109:9296ab0bfc11 151
Kojto 109:9296ab0bfc11 152 uint32_t DMADisableonRxError; /*!< Specifies whether the DMA is disabled in case of reception error.
Kojto 109:9296ab0bfc11 153 This parameter can be a value of @ref SMARTCARD_DMA_Disable_on_Rx_Error */
Kojto 109:9296ab0bfc11 154
Kojto 109:9296ab0bfc11 155 uint32_t MSBFirst; /*!< Specifies whether MSB is sent first on UART line.
Kojto 109:9296ab0bfc11 156 This parameter can be a value of @ref SMARTCARD_MSB_First */
Kojto 109:9296ab0bfc11 157 }SMARTCARD_AdvFeatureInitTypeDef;
Kojto 109:9296ab0bfc11 158
Kojto 109:9296ab0bfc11 159 /**
Kojto 109:9296ab0bfc11 160 * @brief HAL State structures definition
Kojto 109:9296ab0bfc11 161 */
Kojto 109:9296ab0bfc11 162 typedef enum
Kojto 109:9296ab0bfc11 163 {
Kojto 109:9296ab0bfc11 164 HAL_SMARTCARD_STATE_RESET = 0x00, /*!< Peripheral is not initialized */
Kojto 109:9296ab0bfc11 165 HAL_SMARTCARD_STATE_READY = 0x01, /*!< Peripheral Initialized and ready for use */
Kojto 109:9296ab0bfc11 166 HAL_SMARTCARD_STATE_BUSY = 0x02, /*!< an internal process is ongoing */
Kojto 109:9296ab0bfc11 167 HAL_SMARTCARD_STATE_BUSY_TX = 0x12, /*!< Data Transmission process is ongoing */
Kojto 109:9296ab0bfc11 168 HAL_SMARTCARD_STATE_BUSY_RX = 0x22, /*!< Data Reception process is ongoing */
Kojto 109:9296ab0bfc11 169 HAL_SMARTCARD_STATE_BUSY_TX_RX = 0x32, /*!< Data Transmission and Reception process is ongoing */
Kojto 109:9296ab0bfc11 170 HAL_SMARTCARD_STATE_TIMEOUT = 0x03, /*!< Timeout state */
Kojto 109:9296ab0bfc11 171 HAL_SMARTCARD_STATE_ERROR = 0x04 /*!< Error */
Kojto 109:9296ab0bfc11 172 }HAL_SMARTCARD_StateTypeDef;
Kojto 109:9296ab0bfc11 173
Kojto 109:9296ab0bfc11 174 /**
Kojto 109:9296ab0bfc11 175 * @brief SMARTCARD clock sources
Kojto 109:9296ab0bfc11 176 */
Kojto 109:9296ab0bfc11 177 typedef enum
Kojto 109:9296ab0bfc11 178 {
Kojto 109:9296ab0bfc11 179 SMARTCARD_CLOCKSOURCE_PCLK1 = 0x00, /*!< PCLK1 clock source */
Kojto 109:9296ab0bfc11 180 SMARTCARD_CLOCKSOURCE_HSI = 0x02, /*!< HSI clock source */
Kojto 109:9296ab0bfc11 181 SMARTCARD_CLOCKSOURCE_SYSCLK = 0x04, /*!< SYSCLK clock source */
Kojto 109:9296ab0bfc11 182 SMARTCARD_CLOCKSOURCE_LSE = 0x08, /*!< LSE clock source */
Kojto 109:9296ab0bfc11 183 SMARTCARD_CLOCKSOURCE_UNDEFINED = 0x10 /*!< undefined clock source */
Kojto 109:9296ab0bfc11 184 }SMARTCARD_ClockSourceTypeDef;
Kojto 109:9296ab0bfc11 185
Kojto 109:9296ab0bfc11 186 /**
Kojto 109:9296ab0bfc11 187 * @brief SMARTCARD handle Structure definition
Kojto 109:9296ab0bfc11 188 */
Kojto 109:9296ab0bfc11 189 typedef struct
Kojto 109:9296ab0bfc11 190 {
Kojto 109:9296ab0bfc11 191 USART_TypeDef *Instance; /*!< USART registers base address */
Kojto 109:9296ab0bfc11 192
Kojto 109:9296ab0bfc11 193 SMARTCARD_InitTypeDef Init; /*!< SmartCard communication parameters */
Kojto 109:9296ab0bfc11 194
Kojto 109:9296ab0bfc11 195 SMARTCARD_AdvFeatureInitTypeDef AdvancedInit; /*!< SmartCard advanced features initialization parameters */
Kojto 109:9296ab0bfc11 196
Kojto 109:9296ab0bfc11 197 uint8_t *pTxBuffPtr; /*!< Pointer to SmartCard Tx transfer Buffer */
Kojto 109:9296ab0bfc11 198
Kojto 109:9296ab0bfc11 199 uint16_t TxXferSize; /*!< SmartCard Tx Transfer size */
Kojto 109:9296ab0bfc11 200
Kojto 109:9296ab0bfc11 201 uint16_t TxXferCount; /*!< SmartCard Tx Transfer Counter */
Kojto 109:9296ab0bfc11 202
Kojto 109:9296ab0bfc11 203 uint8_t *pRxBuffPtr; /*!< Pointer to SmartCard Rx transfer Buffer */
Kojto 109:9296ab0bfc11 204
Kojto 109:9296ab0bfc11 205 uint16_t RxXferSize; /*!< SmartCard Rx Transfer size */
Kojto 109:9296ab0bfc11 206
Kojto 109:9296ab0bfc11 207 uint16_t RxXferCount; /*!< SmartCard Rx Transfer Counter */
Kojto 109:9296ab0bfc11 208
Kojto 109:9296ab0bfc11 209 DMA_HandleTypeDef *hdmatx; /*!< SmartCard Tx DMA Handle parameters */
Kojto 109:9296ab0bfc11 210
Kojto 109:9296ab0bfc11 211 DMA_HandleTypeDef *hdmarx; /*!< SmartCard Rx DMA Handle parameters */
Kojto 109:9296ab0bfc11 212
Kojto 109:9296ab0bfc11 213 HAL_LockTypeDef Lock; /*!< Locking object */
Kojto 109:9296ab0bfc11 214
Kojto 109:9296ab0bfc11 215 __IO HAL_SMARTCARD_StateTypeDef State; /*!< SmartCard communication state */
Kojto 109:9296ab0bfc11 216
Kojto 109:9296ab0bfc11 217 __IO uint32_t ErrorCode; /*!< SmartCard Error code
Kojto 109:9296ab0bfc11 218 This parameter can be a value of @ref SMARTCARD_Error */
Kojto 109:9296ab0bfc11 219
Kojto 109:9296ab0bfc11 220 }SMARTCARD_HandleTypeDef;
Kojto 109:9296ab0bfc11 221
Kojto 109:9296ab0bfc11 222 /**
Kojto 109:9296ab0bfc11 223 * @}
Kojto 109:9296ab0bfc11 224 */
Kojto 109:9296ab0bfc11 225
Kojto 109:9296ab0bfc11 226 /* Exported constants --------------------------------------------------------*/
Kojto 109:9296ab0bfc11 227 /** @defgroup SMARTCARD_Exported_Constants SMARTCARD Exported Constants
Kojto 109:9296ab0bfc11 228 * @{
Kojto 109:9296ab0bfc11 229 */
Kojto 109:9296ab0bfc11 230
Kojto 109:9296ab0bfc11 231 /** @defgroup SMARTCARD_Error SMARTCARD Error
Kojto 109:9296ab0bfc11 232 * @{
Kojto 109:9296ab0bfc11 233 */
Kojto 109:9296ab0bfc11 234 #define HAL_SMARTCARD_ERROR_NONE ((uint32_t)0x00000000) /*!< No error */
Kojto 109:9296ab0bfc11 235 #define HAL_SMARTCARD_ERROR_PE ((uint32_t)0x00000001) /*!< Parity error */
Kojto 109:9296ab0bfc11 236 #define HAL_SMARTCARD_ERROR_NE ((uint32_t)0x00000002) /*!< Noise error */
Kojto 109:9296ab0bfc11 237 #define HAL_SMARTCARD_ERROR_FE ((uint32_t)0x00000004) /*!< frame error */
Kojto 109:9296ab0bfc11 238 #define HAL_SMARTCARD_ERROR_ORE ((uint32_t)0x00000008) /*!< Overrun error */
Kojto 109:9296ab0bfc11 239 #define HAL_SMARTCARD_ERROR_DMA ((uint32_t)0x00000010) /*!< DMA transfer error */
Kojto 109:9296ab0bfc11 240 #define HAL_SMARTCARD_ERROR_RTO ((uint32_t)0x00000020) /*!< Receiver TimeOut error */
Kojto 109:9296ab0bfc11 241 /**
Kojto 109:9296ab0bfc11 242 * @}
Kojto 109:9296ab0bfc11 243 */
Kojto 109:9296ab0bfc11 244
Kojto 109:9296ab0bfc11 245 /** @defgroup SMARTCARD_Word_Length SMARTCARD Word Length
Kojto 109:9296ab0bfc11 246 * @{
Kojto 109:9296ab0bfc11 247 */
Kojto 109:9296ab0bfc11 248 #define SMARTCARD_WORDLENGTH_9B ((uint32_t)USART_CR1_M0) /*!< SMARTCARD frame length */
Kojto 109:9296ab0bfc11 249 /**
Kojto 109:9296ab0bfc11 250 * @}
Kojto 109:9296ab0bfc11 251 */
Kojto 109:9296ab0bfc11 252
Kojto 109:9296ab0bfc11 253 /** @defgroup SMARTCARD_Stop_Bits SMARTCARD Stop Bits
Kojto 109:9296ab0bfc11 254 * @{
Kojto 109:9296ab0bfc11 255 */
Kojto 109:9296ab0bfc11 256 #define SMARTCARD_STOPBITS_1_5 USART_CR2_STOP /*!< SMARTCARD frame with 1.5 stop bits */
Kojto 109:9296ab0bfc11 257 /**
Kojto 109:9296ab0bfc11 258 * @}
Kojto 109:9296ab0bfc11 259 */
Kojto 109:9296ab0bfc11 260
Kojto 109:9296ab0bfc11 261 /** @defgroup SMARTCARD_Parity SMARTCARD Parity
Kojto 109:9296ab0bfc11 262 * @{
Kojto 109:9296ab0bfc11 263 */
Kojto 109:9296ab0bfc11 264 #define SMARTCARD_PARITY_EVEN ((uint32_t)USART_CR1_PCE) /*!< SMARTCARD frame even parity */
Kojto 109:9296ab0bfc11 265 #define SMARTCARD_PARITY_ODD ((uint32_t)(USART_CR1_PCE | USART_CR1_PS)) /*!< SMARTCARD frame odd parity */
Kojto 109:9296ab0bfc11 266 /**
Kojto 109:9296ab0bfc11 267 * @}
Kojto 109:9296ab0bfc11 268 */
Kojto 109:9296ab0bfc11 269
Kojto 109:9296ab0bfc11 270 /** @defgroup SMARTCARD_Mode SMARTCARD Transfer Mode
Kojto 109:9296ab0bfc11 271 * @{
Kojto 109:9296ab0bfc11 272 */
Kojto 109:9296ab0bfc11 273 #define SMARTCARD_MODE_RX ((uint32_t)USART_CR1_RE) /*!< SMARTCARD RX mode */
Kojto 109:9296ab0bfc11 274 #define SMARTCARD_MODE_TX ((uint32_t)USART_CR1_TE) /*!< SMARTCARD TX mode */
Kojto 109:9296ab0bfc11 275 #define SMARTCARD_MODE_TX_RX ((uint32_t)(USART_CR1_TE |USART_CR1_RE)) /*!< SMARTCARD RX and TX mode */
Kojto 109:9296ab0bfc11 276 /**
Kojto 109:9296ab0bfc11 277 * @}
Kojto 109:9296ab0bfc11 278 */
Kojto 109:9296ab0bfc11 279
Kojto 109:9296ab0bfc11 280 /** @defgroup SMARTCARD_Clock_Polarity SMARTCARD Clock Polarity
Kojto 109:9296ab0bfc11 281 * @{
Kojto 109:9296ab0bfc11 282 */
Kojto 109:9296ab0bfc11 283 #define SMARTCARD_POLARITY_LOW ((uint32_t)0x00000000) /*!< SMARTCARD frame low polarity */
Kojto 109:9296ab0bfc11 284 #define SMARTCARD_POLARITY_HIGH ((uint32_t)USART_CR2_CPOL) /*!< SMARTCARD frame high polarity */
Kojto 109:9296ab0bfc11 285 /**
Kojto 109:9296ab0bfc11 286 * @}
Kojto 109:9296ab0bfc11 287 */
Kojto 109:9296ab0bfc11 288
Kojto 109:9296ab0bfc11 289 /** @defgroup SMARTCARD_Clock_Phase SMARTCARD Clock Phase
Kojto 109:9296ab0bfc11 290 * @{
Kojto 109:9296ab0bfc11 291 */
Kojto 109:9296ab0bfc11 292 #define SMARTCARD_PHASE_1EDGE ((uint32_t)0x00000000) /*!< SMARTCARD frame phase on first clock transition */
Kojto 109:9296ab0bfc11 293 #define SMARTCARD_PHASE_2EDGE ((uint32_t)USART_CR2_CPHA) /*!< SMARTCARD frame phase on second clock transition */
Kojto 109:9296ab0bfc11 294 /**
Kojto 109:9296ab0bfc11 295 * @}
Kojto 109:9296ab0bfc11 296 */
Kojto 109:9296ab0bfc11 297
Kojto 109:9296ab0bfc11 298 /** @defgroup SMARTCARD_Last_Bit SMARTCARD Last Bit
Kojto 109:9296ab0bfc11 299 * @{
Kojto 109:9296ab0bfc11 300 */
Kojto 109:9296ab0bfc11 301 #define SMARTCARD_LASTBIT_DISABLE ((uint32_t)0x00000000) /*!< SMARTCARD frame last data bit clock pulse not output to SCLK pin */
Kojto 109:9296ab0bfc11 302 #define SMARTCARD_LASTBIT_ENABLE ((uint32_t)USART_CR2_LBCL) /*!< SMARTCARD frame last data bit clock pulse output to SCLK pin */
Kojto 109:9296ab0bfc11 303 /**
Kojto 109:9296ab0bfc11 304 * @}
Kojto 109:9296ab0bfc11 305 */
Kojto 109:9296ab0bfc11 306
Kojto 109:9296ab0bfc11 307 /** @defgroup SMARTCARD_OneBit_Sampling SMARTCARD One Bit Sampling Method
Kojto 109:9296ab0bfc11 308 * @{
Kojto 109:9296ab0bfc11 309 */
Kojto 109:9296ab0bfc11 310 #define SMARTCARD_ONE_BIT_SAMPLE_DISABLE ((uint32_t)0x00000000) /*!< SMARTCARD frame one-bit sample disabled */
Kojto 109:9296ab0bfc11 311 #define SMARTCARD_ONE_BIT_SAMPLE_ENABLE ((uint32_t)USART_CR3_ONEBIT) /*!< SMARTCARD frame one-bit sample enabled */
Kojto 109:9296ab0bfc11 312 /**
Kojto 109:9296ab0bfc11 313 * @}
Kojto 109:9296ab0bfc11 314 */
Kojto 109:9296ab0bfc11 315
Kojto 109:9296ab0bfc11 316
Kojto 109:9296ab0bfc11 317 /** @defgroup SMARTCARD_NACK_Enable SMARTCARD NACK Enable
Kojto 109:9296ab0bfc11 318 * @{
Kojto 109:9296ab0bfc11 319 */
Kojto 109:9296ab0bfc11 320 #define SMARTCARD_NACK_ENABLE ((uint32_t)USART_CR3_NACK) /*!< SMARTCARD NACK transmission disabled */
Kojto 109:9296ab0bfc11 321 #define SMARTCARD_NACK_DISABLE ((uint32_t)0x00000000) /*!< SMARTCARD NACK transmission enabled */
Kojto 109:9296ab0bfc11 322 /**
Kojto 109:9296ab0bfc11 323 * @}
Kojto 109:9296ab0bfc11 324 */
Kojto 109:9296ab0bfc11 325
Kojto 109:9296ab0bfc11 326 /** @defgroup SMARTCARD_Timeout_Enable SMARTCARD Timeout Enable
Kojto 109:9296ab0bfc11 327 * @{
Kojto 109:9296ab0bfc11 328 */
Kojto 109:9296ab0bfc11 329 #define SMARTCARD_TIMEOUT_DISABLE ((uint32_t)0x00000000) /*!< SMARTCARD receiver timeout disabled */
Kojto 109:9296ab0bfc11 330 #define SMARTCARD_TIMEOUT_ENABLE ((uint32_t)USART_CR2_RTOEN) /*!< SMARTCARD receiver timeout enabled */
Kojto 109:9296ab0bfc11 331 /**
Kojto 109:9296ab0bfc11 332 * @}
Kojto 109:9296ab0bfc11 333 */
Kojto 109:9296ab0bfc11 334
Kojto 109:9296ab0bfc11 335 /** @defgroup SMARTCARD_Advanced_Features_Initialization_Type SMARTCARD advanced feature initialization type
Kojto 109:9296ab0bfc11 336 * @{
Kojto 109:9296ab0bfc11 337 */
Kojto 109:9296ab0bfc11 338 #define SMARTCARD_ADVFEATURE_NO_INIT ((uint32_t)0x00000000) /*!< No advanced feature initialization */
Kojto 109:9296ab0bfc11 339 #define SMARTCARD_ADVFEATURE_TXINVERT_INIT ((uint32_t)0x00000001) /*!< TX pin active level inversion */
Kojto 109:9296ab0bfc11 340 #define SMARTCARD_ADVFEATURE_RXINVERT_INIT ((uint32_t)0x00000002) /*!< RX pin active level inversion */
Kojto 109:9296ab0bfc11 341 #define SMARTCARD_ADVFEATURE_DATAINVERT_INIT ((uint32_t)0x00000004) /*!< Binary data inversion */
Kojto 109:9296ab0bfc11 342 #define SMARTCARD_ADVFEATURE_SWAP_INIT ((uint32_t)0x00000008) /*!< TX/RX pins swap */
Kojto 109:9296ab0bfc11 343 #define SMARTCARD_ADVFEATURE_RXOVERRUNDISABLE_INIT ((uint32_t)0x00000010) /*!< RX overrun disable */
Kojto 109:9296ab0bfc11 344 #define SMARTCARD_ADVFEATURE_DMADISABLEONERROR_INIT ((uint32_t)0x00000020) /*!< DMA disable on Reception Error */
Kojto 109:9296ab0bfc11 345 #define SMARTCARD_ADVFEATURE_MSBFIRST_INIT ((uint32_t)0x00000080) /*!< Most significant bit sent/received first */
Kojto 109:9296ab0bfc11 346 /**
Kojto 109:9296ab0bfc11 347 * @}
Kojto 109:9296ab0bfc11 348 */
Kojto 109:9296ab0bfc11 349
Kojto 109:9296ab0bfc11 350 /** @defgroup SMARTCARD_Tx_Inv SMARTCARD advanced feature TX pin active level inversion
Kojto 109:9296ab0bfc11 351 * @{
Kojto 109:9296ab0bfc11 352 */
Kojto 109:9296ab0bfc11 353 #define SMARTCARD_ADVFEATURE_TXINV_DISABLE ((uint32_t)0x00000000) /*!< TX pin active level inversion disable */
Kojto 109:9296ab0bfc11 354 #define SMARTCARD_ADVFEATURE_TXINV_ENABLE ((uint32_t)USART_CR2_TXINV) /*!< TX pin active level inversion enable */
Kojto 109:9296ab0bfc11 355 /**
Kojto 109:9296ab0bfc11 356 * @}
Kojto 109:9296ab0bfc11 357 */
Kojto 109:9296ab0bfc11 358
Kojto 109:9296ab0bfc11 359 /** @defgroup SMARTCARD_Rx_Inv SMARTCARD advanced feature RX pin active level inversion
Kojto 109:9296ab0bfc11 360 * @{
Kojto 109:9296ab0bfc11 361 */
Kojto 109:9296ab0bfc11 362 #define SMARTCARD_ADVFEATURE_RXINV_DISABLE ((uint32_t)0x00000000) /*!< RX pin active level inversion disable */
Kojto 109:9296ab0bfc11 363 #define SMARTCARD_ADVFEATURE_RXINV_ENABLE ((uint32_t)USART_CR2_RXINV) /*!< RX pin active level inversion enable */
Kojto 109:9296ab0bfc11 364 /**
Kojto 109:9296ab0bfc11 365 * @}
Kojto 109:9296ab0bfc11 366 */
Kojto 109:9296ab0bfc11 367
Kojto 109:9296ab0bfc11 368 /** @defgroup SMARTCARD_Data_Inv SMARTCARD advanced feature Binary Data inversion
Kojto 109:9296ab0bfc11 369 * @{
Kojto 109:9296ab0bfc11 370 */
Kojto 109:9296ab0bfc11 371 #define SMARTCARD_ADVFEATURE_DATAINV_DISABLE ((uint32_t)0x00000000) /*!< Binary data inversion disable */
Kojto 109:9296ab0bfc11 372 #define SMARTCARD_ADVFEATURE_DATAINV_ENABLE ((uint32_t)USART_CR2_DATAINV) /*!< Binary data inversion enable */
Kojto 109:9296ab0bfc11 373 /**
Kojto 109:9296ab0bfc11 374 * @}
Kojto 109:9296ab0bfc11 375 */
Kojto 109:9296ab0bfc11 376
Kojto 109:9296ab0bfc11 377 /** @defgroup SMARTCARD_Rx_Tx_Swap SMARTCARD advanced feature RX TX pins swap
Kojto 109:9296ab0bfc11 378 * @{
Kojto 109:9296ab0bfc11 379 */
Kojto 109:9296ab0bfc11 380 #define SMARTCARD_ADVFEATURE_SWAP_DISABLE ((uint32_t)0x00000000) /*!< TX/RX pins swap disable */
Kojto 109:9296ab0bfc11 381 #define SMARTCARD_ADVFEATURE_SWAP_ENABLE ((uint32_t)USART_CR2_SWAP) /*!< TX/RX pins swap enable */
Kojto 109:9296ab0bfc11 382 /**
Kojto 109:9296ab0bfc11 383 * @}
Kojto 109:9296ab0bfc11 384 */
Kojto 109:9296ab0bfc11 385
Kojto 109:9296ab0bfc11 386 /** @defgroup SMARTCARD_Overrun_Disable SMARTCARD advanced feature Overrun Disable
Kojto 109:9296ab0bfc11 387 * @{
Kojto 109:9296ab0bfc11 388 */
Kojto 109:9296ab0bfc11 389 #define SMARTCARD_ADVFEATURE_OVERRUN_ENABLE ((uint32_t)0x00000000) /*!< RX overrun enable */
Kojto 109:9296ab0bfc11 390 #define SMARTCARD_ADVFEATURE_OVERRUN_DISABLE ((uint32_t)USART_CR3_OVRDIS) /*!< RX overrun disable */
Kojto 109:9296ab0bfc11 391 /**
Kojto 109:9296ab0bfc11 392 * @}
Kojto 109:9296ab0bfc11 393 */
Kojto 109:9296ab0bfc11 394
Kojto 109:9296ab0bfc11 395 /** @defgroup SMARTCARD_DMA_Disable_on_Rx_Error SMARTCARD advanced feature DMA Disable on Rx Error
Kojto 109:9296ab0bfc11 396 * @{
Kojto 109:9296ab0bfc11 397 */
Kojto 109:9296ab0bfc11 398 #define SMARTCARD_ADVFEATURE_DMA_ENABLEONRXERROR ((uint32_t)0x00000000) /*!< DMA enable on Reception Error */
Kojto 109:9296ab0bfc11 399 #define SMARTCARD_ADVFEATURE_DMA_DISABLEONRXERROR ((uint32_t)USART_CR3_DDRE) /*!< DMA disable on Reception Error */
Kojto 109:9296ab0bfc11 400 /**
Kojto 109:9296ab0bfc11 401 * @}
Kojto 109:9296ab0bfc11 402 */
Kojto 109:9296ab0bfc11 403
Kojto 109:9296ab0bfc11 404 /** @defgroup SMARTCARD_MSB_First SMARTCARD advanced feature MSB first
Kojto 109:9296ab0bfc11 405 * @{
Kojto 109:9296ab0bfc11 406 */
Kojto 109:9296ab0bfc11 407 #define SMARTCARD_ADVFEATURE_MSBFIRST_DISABLE ((uint32_t)0x00000000) /*!< Most significant bit sent/received first disable */
Kojto 109:9296ab0bfc11 408 #define SMARTCARD_ADVFEATURE_MSBFIRST_ENABLE ((uint32_t)USART_CR2_MSBFIRST) /*!< Most significant bit sent/received first enable */
Kojto 109:9296ab0bfc11 409 /**
Kojto 109:9296ab0bfc11 410 * @}
Kojto 109:9296ab0bfc11 411 */
Kojto 109:9296ab0bfc11 412
Kojto 109:9296ab0bfc11 413 /** @defgroup SMARTCARD_Flags SMARTCARD Flags
Kojto 109:9296ab0bfc11 414 * Elements values convention: 0xXXXX
Kojto 109:9296ab0bfc11 415 * - 0xXXXX : Flag mask in the ISR register
Kojto 109:9296ab0bfc11 416 * @{
Kojto 109:9296ab0bfc11 417 */
Kojto 109:9296ab0bfc11 418 #define SMARTCARD_FLAG_REACK USART_ISR_REACK /*!< SMARTCARD receive enable acknowledge flag */
Kojto 109:9296ab0bfc11 419 #define SMARTCARD_FLAG_TEACK USART_ISR_TEACK /*!< SMARTCARD transmit enable acknowledge flag */
Kojto 109:9296ab0bfc11 420 #define SMARTCARD_FLAG_BUSY USART_ISR_BUSY /*!< SMARTCARD busy flag */
Kojto 109:9296ab0bfc11 421 #define SMARTCARD_FLAG_EOBF USART_ISR_EOBF /*!< SMARTCARD end of block flag */
Kojto 109:9296ab0bfc11 422 #define SMARTCARD_FLAG_RTOF USART_ISR_RTOF /*!< SMARTCARD receiver timeout flag */
Kojto 109:9296ab0bfc11 423 #define SMARTCARD_FLAG_TXE USART_ISR_TXE /*!< SMARTCARD transmit data register empty */
Kojto 109:9296ab0bfc11 424 #define SMARTCARD_FLAG_TC USART_ISR_TC /*!< SMARTCARD transmission complete */
Kojto 109:9296ab0bfc11 425 #define SMARTCARD_FLAG_RXNE USART_ISR_RXNE /*!< SMARTCARD read data register not empty */
Kojto 109:9296ab0bfc11 426 #define SMARTCARD_FLAG_IDLE USART_ISR_IDLE /*!< SMARTCARD idle line detection */
Kojto 109:9296ab0bfc11 427 #define SMARTCARD_FLAG_ORE USART_ISR_ORE /*!< SMARTCARD overrun error */
Kojto 109:9296ab0bfc11 428 #define SMARTCARD_FLAG_NE USART_ISR_NE /*!< SMARTCARD noise error */
Kojto 109:9296ab0bfc11 429 #define SMARTCARD_FLAG_FE USART_ISR_FE /*!< SMARTCARD frame error */
Kojto 109:9296ab0bfc11 430 #define SMARTCARD_FLAG_PE USART_ISR_PE /*!< SMARTCARD parity error */
Kojto 109:9296ab0bfc11 431 /**
Kojto 109:9296ab0bfc11 432 * @}
Kojto 109:9296ab0bfc11 433 */
Kojto 109:9296ab0bfc11 434
Kojto 109:9296ab0bfc11 435 /** @defgroup SMARTCARD_Interrupt_definition SMARTCARD Interrupts Definition
Kojto 109:9296ab0bfc11 436 * Elements values convention: 0000ZZZZ0XXYYYYYb
Kojto 109:9296ab0bfc11 437 * - YYYYY : Interrupt source position in the XX register (5bits)
Kojto 109:9296ab0bfc11 438 * - XX : Interrupt source register (2bits)
Kojto 109:9296ab0bfc11 439 * - 01: CR1 register
Kojto 109:9296ab0bfc11 440 * - 10: CR2 register
Kojto 109:9296ab0bfc11 441 * - 11: CR3 register
Kojto 109:9296ab0bfc11 442 * - ZZZZ : Flag position in the ISR register(4bits)
Kojto 109:9296ab0bfc11 443 * @{
Kojto 109:9296ab0bfc11 444 */
Kojto 109:9296ab0bfc11 445
Kojto 109:9296ab0bfc11 446 #define SMARTCARD_IT_PE ((uint16_t)0x0028) /*!< SMARTCARD parity error interruption */
Kojto 109:9296ab0bfc11 447 #define SMARTCARD_IT_TXE ((uint16_t)0x0727) /*!< SMARTCARD transmit data register empty interruption */
Kojto 109:9296ab0bfc11 448 #define SMARTCARD_IT_TC ((uint16_t)0x0626) /*!< SMARTCARD transmission complete interruption */
Kojto 109:9296ab0bfc11 449 #define SMARTCARD_IT_RXNE ((uint16_t)0x0525) /*!< SMARTCARD read data register not empty interruption */
Kojto 109:9296ab0bfc11 450 #define SMARTCARD_IT_IDLE ((uint16_t)0x0424) /*!< SMARTCARD idle line detection interruption */
Kojto 109:9296ab0bfc11 451
Kojto 109:9296ab0bfc11 452 #define SMARTCARD_IT_ERR ((uint16_t)0x0060) /*!< SMARTCARD error interruption */
Kojto 109:9296ab0bfc11 453 #define SMARTCARD_IT_ORE ((uint16_t)0x0300) /*!< SMARTCARD overrun error interruption */
Kojto 109:9296ab0bfc11 454 #define SMARTCARD_IT_NE ((uint16_t)0x0200) /*!< SMARTCARD noise error interruption */
Kojto 109:9296ab0bfc11 455 #define SMARTCARD_IT_FE ((uint16_t)0x0100) /*!< SMARTCARD frame error interruption */
Kojto 109:9296ab0bfc11 456
Kojto 109:9296ab0bfc11 457 #define SMARTCARD_IT_EOB ((uint16_t)0x0C3B) /*!< SMARTCARD end of block interruption */
Kojto 109:9296ab0bfc11 458 #define SMARTCARD_IT_RTO ((uint16_t)0x0B3A) /*!< SMARTCARD receiver timeout interruption */
Kojto 109:9296ab0bfc11 459 /**
Kojto 109:9296ab0bfc11 460 * @}
Kojto 109:9296ab0bfc11 461 */
Kojto 109:9296ab0bfc11 462
Kojto 109:9296ab0bfc11 463 /** @defgroup SMARTCARD_IT_CLEAR_Flags SMARTCARD Interruption Clear Flags
Kojto 109:9296ab0bfc11 464 * @{
Kojto 109:9296ab0bfc11 465 */
Kojto 109:9296ab0bfc11 466 #define SMARTCARD_CLEAR_PEF USART_ICR_PECF /*!< SMARTCARD parity error clear flag */
Kojto 109:9296ab0bfc11 467 #define SMARTCARD_CLEAR_FEF USART_ICR_FECF /*!< SMARTCARD framing error clear flag */
Kojto 109:9296ab0bfc11 468 #define SMARTCARD_CLEAR_NEF USART_ICR_NCF /*!< SMARTCARD noise detected clear flag */
Kojto 109:9296ab0bfc11 469 #define SMARTCARD_CLEAR_OREF USART_ICR_ORECF /*!< SMARTCARD overrun error clear flag */
Kojto 109:9296ab0bfc11 470 #define SMARTCARD_CLEAR_IDLEF USART_ICR_IDLECF /*!< SMARTCARD idle line detected clear flag */
Kojto 109:9296ab0bfc11 471 #define SMARTCARD_CLEAR_TCF USART_ICR_TCCF /*!< SMARTCARD transmission complete clear flag */
Kojto 109:9296ab0bfc11 472 #define SMARTCARD_CLEAR_RTOF USART_ICR_RTOCF /*!< SMARTCARD receiver time out clear flag */
Kojto 109:9296ab0bfc11 473 #define SMARTCARD_CLEAR_EOBF USART_ICR_EOBCF /*!< SMARTCARD end of block clear flag */
Kojto 109:9296ab0bfc11 474 /**
Kojto 109:9296ab0bfc11 475 * @}
Kojto 109:9296ab0bfc11 476 */
Kojto 109:9296ab0bfc11 477
Kojto 109:9296ab0bfc11 478 /** @defgroup SMARTCARD_CR3_SCARCNT_LSB_POS SMARTCARD auto retry counter LSB position in CR3 register
Kojto 109:9296ab0bfc11 479 * @{
Kojto 109:9296ab0bfc11 480 */
Kojto 109:9296ab0bfc11 481 #define SMARTCARD_CR3_SCARCNT_LSB_POS ((uint32_t) 17) /*!< SMARTCARD auto retry counter LSB position in CR3 register */
Kojto 109:9296ab0bfc11 482 /**
Kojto 109:9296ab0bfc11 483 * @}
Kojto 109:9296ab0bfc11 484 */
Kojto 109:9296ab0bfc11 485
Kojto 109:9296ab0bfc11 486 /** @defgroup SMARTCARD_GTPR_GT_LSB_POS SMARTCARD guard time value LSB position in GTPR register
Kojto 109:9296ab0bfc11 487 * @{
Kojto 109:9296ab0bfc11 488 */
Kojto 109:9296ab0bfc11 489 #define SMARTCARD_GTPR_GT_LSB_POS ((uint32_t) 8) /*!< SMARTCARD guard time value LSB position in GTPR register */
Kojto 109:9296ab0bfc11 490 /**
Kojto 109:9296ab0bfc11 491 * @}
Kojto 109:9296ab0bfc11 492 */
Kojto 109:9296ab0bfc11 493
Kojto 109:9296ab0bfc11 494 /** @defgroup SMARTCARD_RTOR_BLEN_LSB_POS SMARTCARD block length LSB position in RTOR register
Kojto 109:9296ab0bfc11 495 * @{
Kojto 109:9296ab0bfc11 496 */
Kojto 109:9296ab0bfc11 497 #define SMARTCARD_RTOR_BLEN_LSB_POS ((uint32_t) 24) /*!< SMARTCARD block length LSB position in RTOR register */
Kojto 109:9296ab0bfc11 498 /**
Kojto 109:9296ab0bfc11 499 * @}
Kojto 109:9296ab0bfc11 500 */
Kojto 109:9296ab0bfc11 501
Kojto 109:9296ab0bfc11 502 /** @defgroup SMARTCARD_Interruption_Mask SMARTCARD interruptions flags mask
Kojto 109:9296ab0bfc11 503 * @{
Kojto 109:9296ab0bfc11 504 */
Kojto 109:9296ab0bfc11 505 #define SMARTCARD_IT_MASK ((uint16_t)0x001F) /*!< SMARTCARD interruptions flags mask */
Kojto 109:9296ab0bfc11 506 /**
Kojto 109:9296ab0bfc11 507 * @}
Kojto 109:9296ab0bfc11 508 */
Kojto 109:9296ab0bfc11 509
Kojto 109:9296ab0bfc11 510 /** @defgroup SMARTCARD_Request_Parameters SMARTCARD Request Parameters
Kojto 109:9296ab0bfc11 511 * @{
Kojto 109:9296ab0bfc11 512 */
Kojto 109:9296ab0bfc11 513 #define SMARTCARD_RXDATA_FLUSH_REQUEST ((uint16_t)USART_RQR_RXFRQ) /*!< Receive Data flush Request */
Kojto 109:9296ab0bfc11 514 #define SMARTCARD_TXDATA_FLUSH_REQUEST ((uint16_t)USART_RQR_TXFRQ) /*!< Transmit data flush Request */
Kojto 109:9296ab0bfc11 515 /**
Kojto 109:9296ab0bfc11 516 * @}
Kojto 109:9296ab0bfc11 517 */
Kojto 109:9296ab0bfc11 518
Kojto 109:9296ab0bfc11 519 /**
Kojto 109:9296ab0bfc11 520 * @}
Kojto 109:9296ab0bfc11 521 */
Kojto 109:9296ab0bfc11 522
Kojto 109:9296ab0bfc11 523 /* Exported macros -----------------------------------------------------------*/
Kojto 109:9296ab0bfc11 524 /** @defgroup SMARTCARD_Exported_Macros SMARTCARD Exported Macros
Kojto 109:9296ab0bfc11 525 * @{
Kojto 109:9296ab0bfc11 526 */
Kojto 109:9296ab0bfc11 527
Kojto 109:9296ab0bfc11 528 /** @brief Reset SMARTCARD handle state.
Kojto 109:9296ab0bfc11 529 * @param __HANDLE__: SMARTCARD handle.
Kojto 109:9296ab0bfc11 530 * @retval None
Kojto 109:9296ab0bfc11 531 */
Kojto 109:9296ab0bfc11 532 #define __HAL_SMARTCARD_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_SMARTCARD_STATE_RESET)
Kojto 109:9296ab0bfc11 533
Kojto 109:9296ab0bfc11 534 /** @brief Flush the Smartcard Data registers.
Kojto 109:9296ab0bfc11 535 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 109:9296ab0bfc11 536 * @retval None
Kojto 109:9296ab0bfc11 537 */
Kojto 109:9296ab0bfc11 538 #define __HAL_SMARTCARD_FLUSH_DRREGISTER(__HANDLE__) \
Kojto 109:9296ab0bfc11 539 do{ \
Kojto 109:9296ab0bfc11 540 SET_BIT((__HANDLE__)->Instance->RQR, SMARTCARD_RXDATA_FLUSH_REQUEST); \
Kojto 109:9296ab0bfc11 541 SET_BIT((__HANDLE__)->Instance->RQR, SMARTCARD_TXDATA_FLUSH_REQUEST); \
Kojto 109:9296ab0bfc11 542 } while(0)
Kojto 109:9296ab0bfc11 543
Kojto 109:9296ab0bfc11 544 /** @brief Clear the specified SMARTCARD pending flag.
Kojto 109:9296ab0bfc11 545 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 109:9296ab0bfc11 546 * @param __FLAG__: specifies the flag to check.
Kojto 109:9296ab0bfc11 547 * This parameter can be any combination of the following values:
Kojto 109:9296ab0bfc11 548 * @arg SMARTCARD_CLEAR_PEF: Parity error clear flag
Kojto 109:9296ab0bfc11 549 * @arg SMARTCARD_CLEAR_FEF: Framing error clear flag
Kojto 109:9296ab0bfc11 550 * @arg SMARTCARD_CLEAR_NEF: Noise detected clear flag
Kojto 109:9296ab0bfc11 551 * @arg SMARTCARD_CLEAR_OREF: OverRun error clear flag
Kojto 109:9296ab0bfc11 552 * @arg SMARTCARD_CLEAR_IDLEF: Idle line detected clear flag
Kojto 109:9296ab0bfc11 553 * @arg SMARTCARD_CLEAR_TCF: Transmission complete clear flag
Kojto 109:9296ab0bfc11 554 * @arg SMARTCARD_CLEAR_RTOF: Receiver timeout clear flag
Kojto 109:9296ab0bfc11 555 * @arg SMARTCARD_CLEAR_EOBF: End of block clear flag
Kojto 109:9296ab0bfc11 556 * @retval None
Kojto 109:9296ab0bfc11 557 */
Kojto 109:9296ab0bfc11 558 #define __HAL_SMARTCARD_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ICR = (__FLAG__))
Kojto 109:9296ab0bfc11 559
Kojto 109:9296ab0bfc11 560 /** @brief Clear the SMARTCARD PE pending flag.
Kojto 109:9296ab0bfc11 561 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 109:9296ab0bfc11 562 * @retval None
Kojto 109:9296ab0bfc11 563 */
Kojto 109:9296ab0bfc11 564 #define __HAL_SMARTCARD_CLEAR_PEFLAG(__HANDLE__) __HAL_SMARTCARD_CLEAR_FLAG((__HANDLE__), SMARTCARD_CLEAR_PEF)
Kojto 109:9296ab0bfc11 565
Kojto 109:9296ab0bfc11 566
Kojto 109:9296ab0bfc11 567 /** @brief Clear the SMARTCARD FE pending flag.
Kojto 109:9296ab0bfc11 568 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 109:9296ab0bfc11 569 * @retval None
Kojto 109:9296ab0bfc11 570 */
Kojto 109:9296ab0bfc11 571 #define __HAL_SMARTCARD_CLEAR_FEFLAG(__HANDLE__) __HAL_SMARTCARD_CLEAR_FLAG((__HANDLE__), SMARTCARD_CLEAR_FEF)
Kojto 109:9296ab0bfc11 572
Kojto 109:9296ab0bfc11 573 /** @brief Clear the SMARTCARD NE pending flag.
Kojto 109:9296ab0bfc11 574 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 109:9296ab0bfc11 575 * @retval None
Kojto 109:9296ab0bfc11 576 */
Kojto 109:9296ab0bfc11 577 #define __HAL_SMARTCARD_CLEAR_NEFLAG(__HANDLE__) __HAL_SMARTCARD_CLEAR_FLAG((__HANDLE__), SMARTCARD_CLEAR_NEF)
Kojto 109:9296ab0bfc11 578
Kojto 109:9296ab0bfc11 579 /** @brief Clear the SMARTCARD ORE pending flag.
Kojto 109:9296ab0bfc11 580 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 109:9296ab0bfc11 581 * @retval None
Kojto 109:9296ab0bfc11 582 */
Kojto 109:9296ab0bfc11 583 #define __HAL_SMARTCARD_CLEAR_OREFLAG(__HANDLE__) __HAL_SMARTCARD_CLEAR_FLAG((__HANDLE__), SMARTCARD_CLEAR_OREF)
Kojto 109:9296ab0bfc11 584
Kojto 109:9296ab0bfc11 585 /** @brief Clear the SMARTCARD IDLE pending flag.
Kojto 109:9296ab0bfc11 586 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 109:9296ab0bfc11 587 * @retval None
Kojto 109:9296ab0bfc11 588 */
Kojto 109:9296ab0bfc11 589 #define __HAL_SMARTCARD_CLEAR_IDLEFLAG(__HANDLE__) __HAL_SMARTCARD_CLEAR_FLAG((__HANDLE__), SMARTCARD_CLEAR_IDLEF)
Kojto 109:9296ab0bfc11 590
Kojto 109:9296ab0bfc11 591 /** @brief Check whether the specified Smartcard flag is set or not.
Kojto 109:9296ab0bfc11 592 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 109:9296ab0bfc11 593 * The Handle Instance can be USARTx where x: 1, 2 or 3 to select the USART peripheral.
Kojto 109:9296ab0bfc11 594 * @param __FLAG__: specifies the flag to check.
Kojto 109:9296ab0bfc11 595 * This parameter can be one of the following values:
Kojto 109:9296ab0bfc11 596 * @arg SMARTCARD_FLAG_REACK: Receive enable acknowledge flag
Kojto 109:9296ab0bfc11 597 * @arg SMARTCARD_FLAG_TEACK: Transmit enable acknowledge flag
Kojto 109:9296ab0bfc11 598 * @arg SMARTCARD_FLAG_BUSY: Busy flag
Kojto 109:9296ab0bfc11 599 * @arg SMARTCARD_FLAG_EOBF: End of block flag
Kojto 109:9296ab0bfc11 600 * @arg SMARTCARD_FLAG_RTOF: Receiver timeout flag
Kojto 109:9296ab0bfc11 601 * @arg SMARTCARD_FLAG_TXE: Transmit data register empty flag
Kojto 109:9296ab0bfc11 602 * @arg SMARTCARD_FLAG_TC: Transmission complete flag
Kojto 109:9296ab0bfc11 603 * @arg SMARTCARD_FLAG_RXNE: Receive data register not empty flag
Kojto 109:9296ab0bfc11 604 * @arg SMARTCARD_FLAG_IDLE: Idle line detection flag
Kojto 109:9296ab0bfc11 605 * @arg SMARTCARD_FLAG_ORE: Overrun error flag
Kojto 109:9296ab0bfc11 606 * @arg SMARTCARD_FLAG_NE: Noise error flag
Kojto 109:9296ab0bfc11 607 * @arg SMARTCARD_FLAG_FE: Framing error flag
Kojto 109:9296ab0bfc11 608 * @arg SMARTCARD_FLAG_PE: Parity error flag
Kojto 109:9296ab0bfc11 609 * @retval The new state of __FLAG__ (TRUE or FALSE).
Kojto 109:9296ab0bfc11 610 */
Kojto 109:9296ab0bfc11 611 #define __HAL_SMARTCARD_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->ISR & (__FLAG__)) == (__FLAG__))
Kojto 109:9296ab0bfc11 612
Kojto 109:9296ab0bfc11 613
Kojto 109:9296ab0bfc11 614 /** @brief Enable the specified SmartCard interrupt.
Kojto 109:9296ab0bfc11 615 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 109:9296ab0bfc11 616 * The Handle Instance can be USARTx where x: 1, 2 or 3 to select the USART peripheral.
Kojto 109:9296ab0bfc11 617 * @param __INTERRUPT__: specifies the SMARTCARD interrupt to enable.
Kojto 109:9296ab0bfc11 618 * This parameter can be one of the following values:
Kojto 109:9296ab0bfc11 619 * @arg SMARTCARD_IT_EOB: End of block interrupt
Kojto 109:9296ab0bfc11 620 * @arg SMARTCARD_IT_RTO: Receive timeout interrupt
Kojto 109:9296ab0bfc11 621 * @arg SMARTCARD_IT_TXE: Transmit data register empty interrupt
Kojto 109:9296ab0bfc11 622 * @arg SMARTCARD_IT_TC: Transmission complete interrupt
Kojto 109:9296ab0bfc11 623 * @arg SMARTCARD_IT_RXNE: Receive data register not empty interrupt
Kojto 109:9296ab0bfc11 624 * @arg SMARTCARD_IT_IDLE: Idle line detection interrupt
Kojto 109:9296ab0bfc11 625 * @arg SMARTCARD_IT_PE: Parity error interrupt
Kojto 109:9296ab0bfc11 626 * @arg SMARTCARD_IT_ERR: Error interrupt(frame error, noise error, overrun error)
Kojto 109:9296ab0bfc11 627 * @retval None
Kojto 109:9296ab0bfc11 628 */
Kojto 109:9296ab0bfc11 629 #define __HAL_SMARTCARD_ENABLE_IT(__HANDLE__, __INTERRUPT__) (((((uint8_t)(__INTERRUPT__)) >> 5U) == 1)? ((__HANDLE__)->Instance->CR1 |= (1U << ((__INTERRUPT__) & SMARTCARD_IT_MASK))): \
Kojto 109:9296ab0bfc11 630 ((((uint8_t)(__INTERRUPT__)) >> 5U) == 2)? ((__HANDLE__)->Instance->CR2 |= (1U << ((__INTERRUPT__) & SMARTCARD_IT_MASK))): \
Kojto 109:9296ab0bfc11 631 ((__HANDLE__)->Instance->CR3 |= (1U << ((__INTERRUPT__) & SMARTCARD_IT_MASK))))
Kojto 109:9296ab0bfc11 632
Kojto 109:9296ab0bfc11 633 /** @brief Disable the specified SmartCard interrupt.
Kojto 109:9296ab0bfc11 634 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 109:9296ab0bfc11 635 * The Handle Instance can be USARTx where x: 1, 2 or 3 to select the USART peripheral.
Kojto 109:9296ab0bfc11 636 * @param __INTERRUPT__: specifies the SMARTCARD interrupt to disable.
Kojto 109:9296ab0bfc11 637 * This parameter can be one of the following values:
Kojto 109:9296ab0bfc11 638 * @arg SMARTCARD_IT_EOB: End of block interrupt
Kojto 109:9296ab0bfc11 639 * @arg SMARTCARD_IT_RTO: Receive timeout interrupt
Kojto 109:9296ab0bfc11 640 * @arg SMARTCARD_IT_TXE: Transmit data register empty interrupt
Kojto 109:9296ab0bfc11 641 * @arg SMARTCARD_IT_TC: Transmission complete interrupt
Kojto 109:9296ab0bfc11 642 * @arg SMARTCARD_IT_RXNE: Receive data register not empty interrupt
Kojto 109:9296ab0bfc11 643 * @arg SMARTCARD_IT_IDLE: Idle line detection interrupt
Kojto 109:9296ab0bfc11 644 * @arg SMARTCARD_IT_PE: Parity error interrupt
Kojto 109:9296ab0bfc11 645 * @arg SMARTCARD_IT_ERR: Error interrupt(frame error, noise error, overrun error)
Kojto 109:9296ab0bfc11 646 * @retval None
Kojto 109:9296ab0bfc11 647 */
Kojto 109:9296ab0bfc11 648 #define __HAL_SMARTCARD_DISABLE_IT(__HANDLE__, __INTERRUPT__) (((((uint8_t)(__INTERRUPT__)) >> 5U) == 1)? ((__HANDLE__)->Instance->CR1 &= ~ (1U << ((__INTERRUPT__) & SMARTCARD_IT_MASK))): \
Kojto 109:9296ab0bfc11 649 ((((uint8_t)(__INTERRUPT__)) >> 5U) == 2)? ((__HANDLE__)->Instance->CR2 &= ~ (1U << ((__INTERRUPT__) & SMARTCARD_IT_MASK))): \
Kojto 109:9296ab0bfc11 650 ((__HANDLE__)->Instance->CR3 &= ~ (1U << ((__INTERRUPT__) & SMARTCARD_IT_MASK))))
Kojto 109:9296ab0bfc11 651
Kojto 109:9296ab0bfc11 652
Kojto 109:9296ab0bfc11 653 /** @brief Check whether the specified SmartCard interrupt has occurred or not.
Kojto 109:9296ab0bfc11 654 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 109:9296ab0bfc11 655 * The Handle Instance can be USARTx where x: 1, 2 or 3 to select the USART peripheral.
Kojto 109:9296ab0bfc11 656 * @param __IT__: specifies the SMARTCARD interrupt to check.
Kojto 109:9296ab0bfc11 657 * This parameter can be one of the following values:
Kojto 109:9296ab0bfc11 658 * @arg SMARTCARD_IT_EOB: End of block interrupt
Kojto 109:9296ab0bfc11 659 * @arg SMARTCARD_IT_RTO: Receive timeout interrupt
Kojto 109:9296ab0bfc11 660 * @arg SMARTCARD_IT_TXE: Transmit data register empty interrupt
Kojto 109:9296ab0bfc11 661 * @arg SMARTCARD_IT_TC: Transmission complete interrupt
Kojto 109:9296ab0bfc11 662 * @arg SMARTCARD_IT_RXNE: Receive data register not empty interrupt
Kojto 109:9296ab0bfc11 663 * @arg SMARTCARD_IT_IDLE: Idle line detection interrupt
Kojto 109:9296ab0bfc11 664 * @arg SMARTCARD_IT_ORE: Overrun error interrupt
Kojto 109:9296ab0bfc11 665 * @arg SMARTCARD_IT_NE: Noise error interrupt
Kojto 109:9296ab0bfc11 666 * @arg SMARTCARD_IT_FE: Framing error interrupt
Kojto 109:9296ab0bfc11 667 * @arg SMARTCARD_IT_PE: Parity error interrupt
Kojto 109:9296ab0bfc11 668 * @retval The new state of __IT__ (TRUE or FALSE).
Kojto 109:9296ab0bfc11 669 */
Kojto 109:9296ab0bfc11 670 #define __HAL_SMARTCARD_GET_IT(__HANDLE__, __IT__) ((__HANDLE__)->Instance->ISR & ((uint32_t)1 << ((__IT__)>> 0x08)))
Kojto 109:9296ab0bfc11 671
Kojto 109:9296ab0bfc11 672 /** @brief Check whether the specified SmartCard interrupt source is enabled or not.
Kojto 109:9296ab0bfc11 673 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 109:9296ab0bfc11 674 * The Handle Instance can be USARTx where x: 1, 2 or 3 to select the USART peripheral.
Kojto 109:9296ab0bfc11 675 * @param __IT__: specifies the SMARTCARD interrupt source to check.
Kojto 109:9296ab0bfc11 676 * This parameter can be one of the following values:
Kojto 109:9296ab0bfc11 677 * @arg SMARTCARD_IT_EOB: End of block interrupt
Kojto 109:9296ab0bfc11 678 * @arg SMARTCARD_IT_RTO: Receive timeout interrupt
Kojto 109:9296ab0bfc11 679 * @arg SMARTCARD_IT_TXE: Transmit data register empty interrupt
Kojto 109:9296ab0bfc11 680 * @arg SMARTCARD_IT_TC: Transmission complete interrupt
Kojto 109:9296ab0bfc11 681 * @arg SMARTCARD_IT_RXNE: Receive data register not empty interrupt
Kojto 109:9296ab0bfc11 682 * @arg SMARTCARD_IT_IDLE: Idle line detection interrupt
Kojto 109:9296ab0bfc11 683 * @arg SMARTCARD_IT_ORE: Overrun error interrupt
Kojto 109:9296ab0bfc11 684 * @arg SMARTCARD_IT_NE: Noise error interrupt
Kojto 109:9296ab0bfc11 685 * @arg SMARTCARD_IT_FE: Framing error interrupt
Kojto 109:9296ab0bfc11 686 * @arg SMARTCARD_IT_PE: Parity error interrupt
Kojto 109:9296ab0bfc11 687 * @retval The new state of __IT__ (TRUE or FALSE).
Kojto 109:9296ab0bfc11 688 */
Kojto 109:9296ab0bfc11 689 #define __HAL_SMARTCARD_GET_IT_SOURCE(__HANDLE__, __IT__) ((((((uint8_t)(__IT__)) >> 5U) == 1)? (__HANDLE__)->Instance->CR1 : \
Kojto 109:9296ab0bfc11 690 (((((uint8_t)(__IT__)) >> 5U) == 2)? (__HANDLE__)->Instance->CR2 : \
Kojto 109:9296ab0bfc11 691 (__HANDLE__)->Instance->CR3)) & ((uint32_t)1 << (((uint16_t)(__IT__)) & SMARTCARD_IT_MASK)))
Kojto 109:9296ab0bfc11 692
Kojto 109:9296ab0bfc11 693
Kojto 109:9296ab0bfc11 694 /** @brief Clear the specified SMARTCARD ISR flag, in setting the proper ICR register flag.
Kojto 109:9296ab0bfc11 695 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 109:9296ab0bfc11 696 * The Handle Instance can be USARTx where x: 1, 2 or 3 to select the USART peripheral.
Kojto 109:9296ab0bfc11 697 * @param __IT_CLEAR__: specifies the interrupt clear register flag that needs to be set
Kojto 109:9296ab0bfc11 698 * to clear the corresponding interrupt
Kojto 109:9296ab0bfc11 699 * This parameter can be one of the following values:
Kojto 109:9296ab0bfc11 700 * @arg SMARTCARD_CLEAR_PEF: Parity error clear flag
Kojto 109:9296ab0bfc11 701 * @arg SMARTCARD_CLEAR_FEF: Framing error clear flag
Kojto 109:9296ab0bfc11 702 * @arg SMARTCARD_CLEAR_NEF: Noise detected clear flag
Kojto 109:9296ab0bfc11 703 * @arg SMARTCARD_CLEAR_OREF: OverRun error clear flag
Kojto 109:9296ab0bfc11 704 * @arg SMARTCARD_CLEAR_IDLEF: Idle line detection clear flag
Kojto 109:9296ab0bfc11 705 * @arg SMARTCARD_CLEAR_TCF: Transmission complete clear flag
Kojto 109:9296ab0bfc11 706 * @arg SMARTCARD_CLEAR_RTOF: Receiver timeout clear flag
Kojto 109:9296ab0bfc11 707 * @arg SMARTCARD_CLEAR_EOBF: End of block clear flag
Kojto 109:9296ab0bfc11 708 * @retval None
Kojto 109:9296ab0bfc11 709 */
Kojto 109:9296ab0bfc11 710 #define __HAL_SMARTCARD_CLEAR_IT(__HANDLE__, __IT_CLEAR__) ((__HANDLE__)->Instance->ICR = (uint32_t)(__IT_CLEAR__))
Kojto 109:9296ab0bfc11 711
Kojto 109:9296ab0bfc11 712 /** @brief Set a specific SMARTCARD request flag.
Kojto 109:9296ab0bfc11 713 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 109:9296ab0bfc11 714 * The Handle Instance can be USARTx where x: 1, 2 or 3 to select the USART peripheral.
Kojto 109:9296ab0bfc11 715 * @param __REQ__: specifies the request flag to set
Kojto 109:9296ab0bfc11 716 * This parameter can be one of the following values:
Kojto 109:9296ab0bfc11 717 * @arg SMARTCARD_RXDATA_FLUSH_REQUEST: Receive data flush Request
Kojto 109:9296ab0bfc11 718 * @arg SMARTCARD_TXDATA_FLUSH_REQUEST: Transmit data flush Request
Kojto 109:9296ab0bfc11 719 *
Kojto 109:9296ab0bfc11 720 * @retval None
Kojto 109:9296ab0bfc11 721 */
Kojto 109:9296ab0bfc11 722 #define __HAL_SMARTCARD_SEND_REQ(__HANDLE__, __REQ__) ((__HANDLE__)->Instance->RQR |= (uint16_t)(__REQ__))
Kojto 109:9296ab0bfc11 723
Kojto 109:9296ab0bfc11 724 /** @brief Enable the SMARTCARD one bit sample method.
Kojto 109:9296ab0bfc11 725 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 109:9296ab0bfc11 726 * @retval None
Kojto 109:9296ab0bfc11 727 */
Kojto 109:9296ab0bfc11 728 #define __HAL_SMARTCARD_ONE_BIT_SAMPLE_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3|= USART_CR3_ONEBIT)
Kojto 109:9296ab0bfc11 729
Kojto 109:9296ab0bfc11 730 /** @brief Disable the SMARTCARD one bit sample method.
Kojto 109:9296ab0bfc11 731 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 109:9296ab0bfc11 732 * @retval None
Kojto 109:9296ab0bfc11 733 */
Kojto 109:9296ab0bfc11 734 #define __HAL_SMARTCARD_ONE_BIT_SAMPLE_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3 &= (uint32_t)~((uint32_t)USART_CR3_ONEBIT))
Kojto 109:9296ab0bfc11 735
Kojto 109:9296ab0bfc11 736 /** @brief Enable the USART associated to the SMARTCARD Handle.
Kojto 109:9296ab0bfc11 737 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 109:9296ab0bfc11 738 * The Handle Instance can be UARTx where x: 1, 2, 3 to select the USART peripheral
Kojto 109:9296ab0bfc11 739 * @retval None
Kojto 109:9296ab0bfc11 740 */
Kojto 109:9296ab0bfc11 741 #define __HAL_SMARTCARD_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 |= USART_CR1_UE)
Kojto 109:9296ab0bfc11 742
Kojto 109:9296ab0bfc11 743 /** @brief Disable the USART associated to the SMARTCARD Handle
Kojto 109:9296ab0bfc11 744 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 109:9296ab0bfc11 745 * The Handle Instance can be UARTx where x: 1, 2, 3 to select the USART peripheral
Kojto 109:9296ab0bfc11 746 * @retval None
Kojto 109:9296ab0bfc11 747 */
Kojto 109:9296ab0bfc11 748 #define __HAL_SMARTCARD_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 &= ~USART_CR1_UE)
Kojto 109:9296ab0bfc11 749
Kojto 109:9296ab0bfc11 750 /**
Kojto 109:9296ab0bfc11 751 * @}
Kojto 109:9296ab0bfc11 752 */
Kojto 109:9296ab0bfc11 753
Kojto 109:9296ab0bfc11 754 /* Private macros -------------------------------------------------------------*/
Kojto 109:9296ab0bfc11 755 /** @defgroup SMARTCARD_Private_Macros SMARTCARD Private Macros
Kojto 109:9296ab0bfc11 756 * @{
Kojto 109:9296ab0bfc11 757 */
Kojto 109:9296ab0bfc11 758
Kojto 109:9296ab0bfc11 759 /** @brief Check the Baud rate range. The maximum Baud Rate is derived from the
Kojto 109:9296ab0bfc11 760 * maximum clock on F0 (i.e. 48 MHz) divided by the oversampling used
Kojto 109:9296ab0bfc11 761 * on the SMARTCARD (i.e. 16).
Kojto 109:9296ab0bfc11 762 * @param __BAUDRATE__: Baud rate set by the configuration function.
Kojto 109:9296ab0bfc11 763 * @retval Test result (TRUE or FALSE)
Kojto 109:9296ab0bfc11 764 */
Kojto 109:9296ab0bfc11 765 #define IS_SMARTCARD_BAUDRATE(__BAUDRATE__) ((__BAUDRATE__) < 4500001)
Kojto 109:9296ab0bfc11 766
Kojto 109:9296ab0bfc11 767 /** @brief Check the block length range.
Kojto 109:9296ab0bfc11 768 * @note The maximum SMARTCARD block length is 0xFF.
Kojto 109:9296ab0bfc11 769 * @param __LENGTH__: block length.
Kojto 109:9296ab0bfc11 770 * @retval Test result (TRUE or FALSE)
Kojto 109:9296ab0bfc11 771 */
Kojto 109:9296ab0bfc11 772 #define IS_SMARTCARD_BLOCKLENGTH(__LENGTH__) ((__LENGTH__) <= 0xFF)
Kojto 109:9296ab0bfc11 773
Kojto 109:9296ab0bfc11 774 /** @brief Check the receiver timeout value.
Kojto 109:9296ab0bfc11 775 * @note The maximum SMARTCARD receiver timeout value is 0xFFFFFF.
Kojto 109:9296ab0bfc11 776 * @param __TIMEOUTVALUE__: receiver timeout value.
Kojto 109:9296ab0bfc11 777 * @retval Test result (TRUE or FALSE)
Kojto 109:9296ab0bfc11 778 */
Kojto 109:9296ab0bfc11 779 #define IS_SMARTCARD_TIMEOUT_VALUE(__TIMEOUTVALUE__) ((__TIMEOUTVALUE__) <= 0xFFFFFF)
Kojto 109:9296ab0bfc11 780
Kojto 109:9296ab0bfc11 781 /** @brief Check the SMARTCARD autoretry counter value.
Kojto 109:9296ab0bfc11 782 * @note The maximum number of retransmissions is 0x7.
Kojto 109:9296ab0bfc11 783 * @param __COUNT__: number of retransmissions.
Kojto 109:9296ab0bfc11 784 * @retval Test result (TRUE or FALSE)
Kojto 109:9296ab0bfc11 785 */
Kojto 109:9296ab0bfc11 786 #define IS_SMARTCARD_AUTORETRY_COUNT(__COUNT__) ((__COUNT__) <= 0x7)
Kojto 109:9296ab0bfc11 787
Kojto 109:9296ab0bfc11 788 /**
Kojto 109:9296ab0bfc11 789 * @brief Ensure that SMARTCARD frame length is valid.
Kojto 109:9296ab0bfc11 790 * @param __LENGTH__: SMARTCARD frame length.
Kojto 109:9296ab0bfc11 791 * @retval SET (__LENGTH__ is valid) or RESET (__LENGTH__ is invalid)
Kojto 109:9296ab0bfc11 792 */
Kojto 109:9296ab0bfc11 793 #define IS_SMARTCARD_WORD_LENGTH(__LENGTH__) ((__LENGTH__) == SMARTCARD_WORDLENGTH_9B)
Kojto 109:9296ab0bfc11 794
Kojto 109:9296ab0bfc11 795 /**
Kojto 109:9296ab0bfc11 796 * @brief Ensure that SMARTCARD frame number of stop bits is valid.
Kojto 109:9296ab0bfc11 797 * @param __STOPBITS__: SMARTCARD frame number of stop bits.
Kojto 109:9296ab0bfc11 798 * @retval SET (__STOPBITS__ is valid) or RESET (__STOPBITS__ is invalid)
Kojto 109:9296ab0bfc11 799 */
Kojto 109:9296ab0bfc11 800 #define IS_SMARTCARD_STOPBITS(__STOPBITS__) ((__STOPBITS__) == SMARTCARD_STOPBITS_1_5)
Kojto 109:9296ab0bfc11 801
Kojto 109:9296ab0bfc11 802 /**
Kojto 109:9296ab0bfc11 803 * @brief Ensure that SMARTCARD frame parity is valid.
Kojto 109:9296ab0bfc11 804 * @param __PARITY__: SMARTCARD frame parity.
Kojto 109:9296ab0bfc11 805 * @retval SET (__PARITY__ is valid) or RESET (__PARITY__ is invalid)
Kojto 109:9296ab0bfc11 806 */
Kojto 109:9296ab0bfc11 807 #define IS_SMARTCARD_PARITY(__PARITY__) (((__PARITY__) == SMARTCARD_PARITY_EVEN) || \
Kojto 109:9296ab0bfc11 808 ((__PARITY__) == SMARTCARD_PARITY_ODD))
Kojto 109:9296ab0bfc11 809
Kojto 109:9296ab0bfc11 810 /**
Kojto 109:9296ab0bfc11 811 * @brief Ensure that SMARTCARD communication mode is valid.
Kojto 109:9296ab0bfc11 812 * @param __MODE__: SMARTCARD communication mode.
Kojto 109:9296ab0bfc11 813 * @retval SET (__MODE__ is valid) or RESET (__MODE__ is invalid)
Kojto 109:9296ab0bfc11 814 */
Kojto 109:9296ab0bfc11 815 #define IS_SMARTCARD_MODE(__MODE__) ((((__MODE__) & (uint16_t)0xFFF3) == 0x00) && ((__MODE__) != (uint16_t)0x00))
Kojto 109:9296ab0bfc11 816
Kojto 109:9296ab0bfc11 817 /**
Kojto 109:9296ab0bfc11 818 * @brief Ensure that SMARTCARD frame polarity is valid.
Kojto 109:9296ab0bfc11 819 * @param __CPOL__: SMARTCARD frame polarity.
Kojto 109:9296ab0bfc11 820 * @retval SET (__CPOL__ is valid) or RESET (__CPOL__ is invalid)
Kojto 109:9296ab0bfc11 821 */
Kojto 109:9296ab0bfc11 822 #define IS_SMARTCARD_POLARITY(__CPOL__) (((__CPOL__) == SMARTCARD_POLARITY_LOW) || ((__CPOL__) == SMARTCARD_POLARITY_HIGH))
Kojto 109:9296ab0bfc11 823
Kojto 109:9296ab0bfc11 824 /**
Kojto 109:9296ab0bfc11 825 * @brief Ensure that SMARTCARD frame phase is valid.
Kojto 109:9296ab0bfc11 826 * @param __CPHA__: SMARTCARD frame phase.
Kojto 109:9296ab0bfc11 827 * @retval SET (__CPHA__ is valid) or RESET (__CPHA__ is invalid)
Kojto 109:9296ab0bfc11 828 */
Kojto 109:9296ab0bfc11 829 #define IS_SMARTCARD_PHASE(__CPHA__) (((__CPHA__) == SMARTCARD_PHASE_1EDGE) || ((__CPHA__) == SMARTCARD_PHASE_2EDGE))
Kojto 109:9296ab0bfc11 830
Kojto 109:9296ab0bfc11 831 /**
Kojto 109:9296ab0bfc11 832 * @brief Ensure that SMARTCARD frame last bit clock pulse setting is valid.
Kojto 109:9296ab0bfc11 833 * @param __LASTBIT__: SMARTCARD frame last bit clock pulse setting.
Kojto 109:9296ab0bfc11 834 * @retval SET (__LASTBIT__ is valid) or RESET (__LASTBIT__ is invalid)
Kojto 109:9296ab0bfc11 835 */
Kojto 109:9296ab0bfc11 836 #define IS_SMARTCARD_LASTBIT(__LASTBIT__) (((__LASTBIT__) == SMARTCARD_LASTBIT_DISABLE) || \
Kojto 109:9296ab0bfc11 837 ((__LASTBIT__) == SMARTCARD_LASTBIT_ENABLE))
Kojto 109:9296ab0bfc11 838
Kojto 109:9296ab0bfc11 839 /**
Kojto 109:9296ab0bfc11 840 * @brief Ensure that SMARTCARD frame sampling is valid.
Kojto 109:9296ab0bfc11 841 * @param __ONEBIT__: SMARTCARD frame sampling.
Kojto 109:9296ab0bfc11 842 * @retval SET (__ONEBIT__ is valid) or RESET (__ONEBIT__ is invalid)
Kojto 109:9296ab0bfc11 843 */
Kojto 109:9296ab0bfc11 844 #define IS_SMARTCARD_ONE_BIT_SAMPLE(__ONEBIT__) (((__ONEBIT__) == SMARTCARD_ONE_BIT_SAMPLE_DISABLE) || \
Kojto 109:9296ab0bfc11 845 ((__ONEBIT__) == SMARTCARD_ONE_BIT_SAMPLE_ENABLE))
Kojto 109:9296ab0bfc11 846
Kojto 109:9296ab0bfc11 847 /**
Kojto 109:9296ab0bfc11 848 * @brief Ensure that SMARTCARD NACK transmission setting is valid.
Kojto 109:9296ab0bfc11 849 * @param __NACK__: SMARTCARD NACK transmission setting.
Kojto 109:9296ab0bfc11 850 * @retval SET (__NACK__ is valid) or RESET (__NACK__ is invalid)
Kojto 109:9296ab0bfc11 851 */
Kojto 109:9296ab0bfc11 852 #define IS_SMARTCARD_NACK(__NACK__) (((__NACK__) == SMARTCARD_NACK_ENABLE) || \
Kojto 109:9296ab0bfc11 853 ((__NACK__) == SMARTCARD_NACK_DISABLE))
Kojto 109:9296ab0bfc11 854
Kojto 109:9296ab0bfc11 855 /**
Kojto 109:9296ab0bfc11 856 * @brief Ensure that SMARTCARD receiver timeout setting is valid.
Kojto 109:9296ab0bfc11 857 * @param __TIMEOUT__: SMARTCARD receiver timeout setting.
Kojto 109:9296ab0bfc11 858 * @retval SET (__TIMEOUT__ is valid) or RESET (__TIMEOUT__ is invalid)
Kojto 109:9296ab0bfc11 859 */
Kojto 109:9296ab0bfc11 860 #define IS_SMARTCARD_TIMEOUT(__TIMEOUT__) (((__TIMEOUT__) == SMARTCARD_TIMEOUT_DISABLE) || \
Kojto 109:9296ab0bfc11 861 ((__TIMEOUT__) == SMARTCARD_TIMEOUT_ENABLE))
Kojto 109:9296ab0bfc11 862
Kojto 109:9296ab0bfc11 863 /**
Kojto 109:9296ab0bfc11 864 * @brief Ensure that SMARTCARD advanced features initialization is valid.
Kojto 109:9296ab0bfc11 865 * @param __INIT__: SMARTCARD advanced features initialization.
Kojto 109:9296ab0bfc11 866 * @retval SET (__INIT__ is valid) or RESET (__INIT__ is invalid)
Kojto 109:9296ab0bfc11 867 */
Kojto 109:9296ab0bfc11 868 #define IS_SMARTCARD_ADVFEATURE_INIT(__INIT__) ((__INIT__) <= (SMARTCARD_ADVFEATURE_NO_INIT | \
Kojto 109:9296ab0bfc11 869 SMARTCARD_ADVFEATURE_TXINVERT_INIT | \
Kojto 109:9296ab0bfc11 870 SMARTCARD_ADVFEATURE_RXINVERT_INIT | \
Kojto 109:9296ab0bfc11 871 SMARTCARD_ADVFEATURE_DATAINVERT_INIT | \
Kojto 109:9296ab0bfc11 872 SMARTCARD_ADVFEATURE_SWAP_INIT | \
Kojto 109:9296ab0bfc11 873 SMARTCARD_ADVFEATURE_RXOVERRUNDISABLE_INIT | \
Kojto 109:9296ab0bfc11 874 SMARTCARD_ADVFEATURE_DMADISABLEONERROR_INIT | \
Kojto 109:9296ab0bfc11 875 SMARTCARD_ADVFEATURE_MSBFIRST_INIT))
Kojto 109:9296ab0bfc11 876
Kojto 109:9296ab0bfc11 877 /**
Kojto 109:9296ab0bfc11 878 * @brief Ensure that SMARTCARD frame TX inversion setting is valid.
Kojto 109:9296ab0bfc11 879 * @param __TXINV__: SMARTCARD frame TX inversion setting.
Kojto 109:9296ab0bfc11 880 * @retval SET (__TXINV__ is valid) or RESET (__TXINV__ is invalid)
Kojto 109:9296ab0bfc11 881 */
Kojto 109:9296ab0bfc11 882 #define IS_SMARTCARD_ADVFEATURE_TXINV(__TXINV__) (((__TXINV__) == SMARTCARD_ADVFEATURE_TXINV_DISABLE) || \
Kojto 109:9296ab0bfc11 883 ((__TXINV__) == SMARTCARD_ADVFEATURE_TXINV_ENABLE))
Kojto 109:9296ab0bfc11 884
Kojto 109:9296ab0bfc11 885 /**
Kojto 109:9296ab0bfc11 886 * @brief Ensure that SMARTCARD frame RX inversion setting is valid.
Kojto 109:9296ab0bfc11 887 * @param __RXINV__: SMARTCARD frame RX inversion setting.
Kojto 109:9296ab0bfc11 888 * @retval SET (__RXINV__ is valid) or RESET (__RXINV__ is invalid)
Kojto 109:9296ab0bfc11 889 */
Kojto 109:9296ab0bfc11 890 #define IS_SMARTCARD_ADVFEATURE_RXINV(__RXINV__) (((__RXINV__) == SMARTCARD_ADVFEATURE_RXINV_DISABLE) || \
Kojto 109:9296ab0bfc11 891 ((__RXINV__) == SMARTCARD_ADVFEATURE_RXINV_ENABLE))
Kojto 109:9296ab0bfc11 892
Kojto 109:9296ab0bfc11 893 /**
Kojto 109:9296ab0bfc11 894 * @brief Ensure that SMARTCARD frame data inversion setting is valid.
Kojto 109:9296ab0bfc11 895 * @param __DATAINV__: SMARTCARD frame data inversion setting.
Kojto 109:9296ab0bfc11 896 * @retval SET (__DATAINV__ is valid) or RESET (__DATAINV__ is invalid)
Kojto 109:9296ab0bfc11 897 */
Kojto 109:9296ab0bfc11 898 #define IS_SMARTCARD_ADVFEATURE_DATAINV(__DATAINV__) (((__DATAINV__) == SMARTCARD_ADVFEATURE_DATAINV_DISABLE) || \
Kojto 109:9296ab0bfc11 899 ((__DATAINV__) == SMARTCARD_ADVFEATURE_DATAINV_ENABLE))
Kojto 109:9296ab0bfc11 900
Kojto 109:9296ab0bfc11 901 /**
Kojto 109:9296ab0bfc11 902 * @brief Ensure that SMARTCARD frame RX/TX pins swap setting is valid.
Kojto 109:9296ab0bfc11 903 * @param __SWAP__: SMARTCARD frame RX/TX pins swap setting.
Kojto 109:9296ab0bfc11 904 * @retval SET (__SWAP__ is valid) or RESET (__SWAP__ is invalid)
Kojto 109:9296ab0bfc11 905 */
Kojto 109:9296ab0bfc11 906 #define IS_SMARTCARD_ADVFEATURE_SWAP(__SWAP__) (((__SWAP__) == SMARTCARD_ADVFEATURE_SWAP_DISABLE) || \
Kojto 109:9296ab0bfc11 907 ((__SWAP__) == SMARTCARD_ADVFEATURE_SWAP_ENABLE))
Kojto 109:9296ab0bfc11 908
Kojto 109:9296ab0bfc11 909 /**
Kojto 109:9296ab0bfc11 910 * @brief Ensure that SMARTCARD frame overrun setting is valid.
Kojto 109:9296ab0bfc11 911 * @param __OVERRUN__: SMARTCARD frame overrun setting.
Kojto 109:9296ab0bfc11 912 * @retval SET (__OVERRUN__ is valid) or RESET (__OVERRUN__ is invalid)
Kojto 109:9296ab0bfc11 913 */
Kojto 109:9296ab0bfc11 914 #define IS_SMARTCARD_OVERRUN(__OVERRUN__) (((__OVERRUN__) == SMARTCARD_ADVFEATURE_OVERRUN_ENABLE) || \
Kojto 109:9296ab0bfc11 915 ((__OVERRUN__) == SMARTCARD_ADVFEATURE_OVERRUN_DISABLE))
Kojto 109:9296ab0bfc11 916
Kojto 109:9296ab0bfc11 917 /**
Kojto 109:9296ab0bfc11 918 * @brief Ensure that SMARTCARD DMA enabling or disabling on error setting is valid.
Kojto 109:9296ab0bfc11 919 * @param __DMA__: SMARTCARD DMA enabling or disabling on error setting.
Kojto 109:9296ab0bfc11 920 * @retval SET (__DMA__ is valid) or RESET (__DMA__ is invalid)
Kojto 109:9296ab0bfc11 921 */
Kojto 109:9296ab0bfc11 922 #define IS_SMARTCARD_ADVFEATURE_DMAONRXERROR(__DMA__) (((__DMA__) == SMARTCARD_ADVFEATURE_DMA_ENABLEONRXERROR) || \
Kojto 109:9296ab0bfc11 923 ((__DMA__) == SMARTCARD_ADVFEATURE_DMA_DISABLEONRXERROR))
Kojto 109:9296ab0bfc11 924
Kojto 109:9296ab0bfc11 925 /**
Kojto 109:9296ab0bfc11 926 * @brief Ensure that SMARTCARD frame MSB first setting is valid.
Kojto 109:9296ab0bfc11 927 * @param __MSBFIRST__: SMARTCARD frame MSB first setting.
Kojto 109:9296ab0bfc11 928 * @retval SET (__MSBFIRST__ is valid) or RESET (__MSBFIRST__ is invalid)
Kojto 109:9296ab0bfc11 929 */
Kojto 109:9296ab0bfc11 930 #define IS_SMARTCARD_ADVFEATURE_MSBFIRST(__MSBFIRST__) (((__MSBFIRST__) == SMARTCARD_ADVFEATURE_MSBFIRST_DISABLE) || \
Kojto 109:9296ab0bfc11 931 ((__MSBFIRST__) == SMARTCARD_ADVFEATURE_MSBFIRST_ENABLE))
Kojto 109:9296ab0bfc11 932
Kojto 109:9296ab0bfc11 933 /**
Kojto 109:9296ab0bfc11 934 * @brief Ensure that SMARTCARD request parameter is valid.
Kojto 109:9296ab0bfc11 935 * @param __PARAM__: SMARTCARD request parameter.
Kojto 109:9296ab0bfc11 936 * @retval SET (__PARAM__ is valid) or RESET (__PARAM__ is invalid)
Kojto 109:9296ab0bfc11 937 */
Kojto 109:9296ab0bfc11 938 #define IS_SMARTCARD_REQUEST_PARAMETER(__PARAM__) (((__PARAM__) == SMARTCARD_RXDATA_FLUSH_REQUEST) || \
Kojto 109:9296ab0bfc11 939 ((__PARAM__) == SMARTCARD_TXDATA_FLUSH_REQUEST))
Kojto 109:9296ab0bfc11 940
Kojto 109:9296ab0bfc11 941 /**
Kojto 109:9296ab0bfc11 942 * @}
Kojto 109:9296ab0bfc11 943 */
Kojto 109:9296ab0bfc11 944
Kojto 109:9296ab0bfc11 945 /* Include SMARTCARD HAL Extended module */
Kojto 109:9296ab0bfc11 946 #include "stm32f0xx_hal_smartcard_ex.h"
Kojto 109:9296ab0bfc11 947
Kojto 109:9296ab0bfc11 948 /* Exported functions --------------------------------------------------------*/
Kojto 109:9296ab0bfc11 949 /** @addtogroup SMARTCARD_Exported_Functions SMARTCARD Exported Functions
Kojto 109:9296ab0bfc11 950 * @{
Kojto 109:9296ab0bfc11 951 */
Kojto 109:9296ab0bfc11 952
Kojto 109:9296ab0bfc11 953 /** @addtogroup SMARTCARD_Exported_Functions_Group1 Initialization and de-initialization functions
Kojto 109:9296ab0bfc11 954 * @{
Kojto 109:9296ab0bfc11 955 */
Kojto 109:9296ab0bfc11 956
Kojto 109:9296ab0bfc11 957 /* Initialization and de-initialization functions ****************************/
Kojto 109:9296ab0bfc11 958 HAL_StatusTypeDef HAL_SMARTCARD_Init(SMARTCARD_HandleTypeDef *hsmartcard);
Kojto 109:9296ab0bfc11 959 HAL_StatusTypeDef HAL_SMARTCARD_DeInit(SMARTCARD_HandleTypeDef *hsmartcard);
Kojto 109:9296ab0bfc11 960 void HAL_SMARTCARD_MspInit(SMARTCARD_HandleTypeDef *hsmartcard);
Kojto 109:9296ab0bfc11 961 void HAL_SMARTCARD_MspDeInit(SMARTCARD_HandleTypeDef *hsmartcard);
Kojto 109:9296ab0bfc11 962
Kojto 109:9296ab0bfc11 963 /**
Kojto 109:9296ab0bfc11 964 * @}
Kojto 109:9296ab0bfc11 965 */
Kojto 109:9296ab0bfc11 966
Kojto 109:9296ab0bfc11 967 /** @addtogroup SMARTCARD_Exported_Functions_Group2 IO operation functions
Kojto 109:9296ab0bfc11 968 * @{
Kojto 109:9296ab0bfc11 969 */
Kojto 109:9296ab0bfc11 970 /* IO operation functions *****************************************************/
Kojto 109:9296ab0bfc11 971 HAL_StatusTypeDef HAL_SMARTCARD_Transmit(SMARTCARD_HandleTypeDef *hsmartcard, uint8_t *pData, uint16_t Size, uint32_t Timeout);
Kojto 109:9296ab0bfc11 972 HAL_StatusTypeDef HAL_SMARTCARD_Receive(SMARTCARD_HandleTypeDef *hsmartcard, uint8_t *pData, uint16_t Size, uint32_t Timeout);
Kojto 109:9296ab0bfc11 973 HAL_StatusTypeDef HAL_SMARTCARD_Transmit_IT(SMARTCARD_HandleTypeDef *hsmartcard, uint8_t *pData, uint16_t Size);
Kojto 109:9296ab0bfc11 974 HAL_StatusTypeDef HAL_SMARTCARD_Receive_IT(SMARTCARD_HandleTypeDef *hsmartcard, uint8_t *pData, uint16_t Size);
Kojto 109:9296ab0bfc11 975 HAL_StatusTypeDef HAL_SMARTCARD_Transmit_DMA(SMARTCARD_HandleTypeDef *hsmartcard, uint8_t *pData, uint16_t Size);
Kojto 109:9296ab0bfc11 976 HAL_StatusTypeDef HAL_SMARTCARD_Receive_DMA(SMARTCARD_HandleTypeDef *hsmartcard, uint8_t *pData, uint16_t Size);
Kojto 109:9296ab0bfc11 977 void HAL_SMARTCARD_IRQHandler(SMARTCARD_HandleTypeDef *hsmartcard);
Kojto 109:9296ab0bfc11 978 void HAL_SMARTCARD_TxCpltCallback(SMARTCARD_HandleTypeDef *hsmartcard);
Kojto 109:9296ab0bfc11 979 void HAL_SMARTCARD_RxCpltCallback(SMARTCARD_HandleTypeDef *hsmartcard);
Kojto 109:9296ab0bfc11 980 void HAL_SMARTCARD_ErrorCallback(SMARTCARD_HandleTypeDef *hsmartcard);
Kojto 109:9296ab0bfc11 981
Kojto 109:9296ab0bfc11 982 /**
Kojto 109:9296ab0bfc11 983 * @}
Kojto 109:9296ab0bfc11 984 */
Kojto 109:9296ab0bfc11 985
Kojto 109:9296ab0bfc11 986 /** @addtogroup SMARTCARD_Exported_Functions_Group3 Peripheral State and Errors functions
Kojto 109:9296ab0bfc11 987 * @{
Kojto 109:9296ab0bfc11 988 */
Kojto 109:9296ab0bfc11 989 /* Peripheral State and Error functions ***************************************/
Kojto 109:9296ab0bfc11 990 HAL_SMARTCARD_StateTypeDef HAL_SMARTCARD_GetState(SMARTCARD_HandleTypeDef *hsmartcard);
Kojto 109:9296ab0bfc11 991 uint32_t HAL_SMARTCARD_GetError(SMARTCARD_HandleTypeDef *hsmartcard);
Kojto 109:9296ab0bfc11 992
Kojto 109:9296ab0bfc11 993 /**
Kojto 109:9296ab0bfc11 994 * @}
Kojto 109:9296ab0bfc11 995 */
Kojto 109:9296ab0bfc11 996
Kojto 109:9296ab0bfc11 997 /**
Kojto 109:9296ab0bfc11 998 * @}
Kojto 109:9296ab0bfc11 999 */
Kojto 109:9296ab0bfc11 1000
Kojto 109:9296ab0bfc11 1001 /**
Kojto 109:9296ab0bfc11 1002 * @}
Kojto 109:9296ab0bfc11 1003 */
Kojto 109:9296ab0bfc11 1004
Kojto 109:9296ab0bfc11 1005 /**
Kojto 109:9296ab0bfc11 1006 * @}
Kojto 109:9296ab0bfc11 1007 */
Kojto 109:9296ab0bfc11 1008
Kojto 109:9296ab0bfc11 1009 #endif /* !defined(STM32F030x6) && !defined(STM32F030x8)&& !defined(STM32F070x6) && !defined(STM32F070xB) && !defined(STM32F030xC) */
Kojto 109:9296ab0bfc11 1010
Kojto 109:9296ab0bfc11 1011 #ifdef __cplusplus
Kojto 109:9296ab0bfc11 1012 }
Kojto 109:9296ab0bfc11 1013 #endif
Kojto 109:9296ab0bfc11 1014
Kojto 109:9296ab0bfc11 1015 #endif /* __STM32F0xx_HAL_SMARTCARD_H */
Kojto 109:9296ab0bfc11 1016
Kojto 109:9296ab0bfc11 1017 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
Kojto 109:9296ab0bfc11 1018