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:
Wed Sep 16 15:32:31 2015 +0100
Revision:
107:4f6c30876dfa
Child:
116:c0f6e94411f5
Release 107  of the mbed library

Changes:
- new platforms - DISCO_F746NG, DISCO_L476VG, NUCLEO_L476RG
- KL43Z - bugfix RTC init function
- K20 - SPI mode fix

Who changed what in which revision?

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