mbed official / mbed

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

Committer:
Kojto
Date:
Thu Jul 07 14:34:11 2016 +0100
Revision:
122:f9eeca106725
Parent:
90:cb3d968589d8
Release 122 of the mbed library

Changes:
- new targets - Nucleo L432KC, Beetle, Nucleo F446ZE, Nucleo L011K4
- Thread safety addition - mbed API should contain a statement about thread safety
- critical section API addition
- CAS API (core_util_atomic_incr/decr)
- DEVICE_ are generated from targets.json file, device.h deprecated
- Callback replaces FunctionPointer to provide std like interface
- mbed HAL API docs improvements
- toolchain - prexif attributes with MBED_
- add new attributes - packed, weak, forcedinline, align
- target.json - contains targets definitions
- ST - L1XX - Cube update to 1.5
- SPI clock selection fix (clock from APB domain)
- F7 - Cube update v1.4.0
- L0 - baudrate init fix
- L1 - Cube update v1.5
- F3 - baudrate init fix, 3 targets CAN support
- F4 - Cube update v1.12.0, 3 targets CAN support
- L4XX - Cube update v1.5.1
- F0 - update Cube to v1.5.0
- L4 - 2 targets (L476RG/VG) CAN support
- NXP - pwm clock fix for KSDK2 MCU
- LPC2368 - remove ARM toolchain support - due to regression
- KSDK2 - fix SPI , I2C address and repeat start
- Silabs - some fixes backported from mbed 3
- Renesas - RZ_A1H - SystemCoreClockUpdate addition

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 90:cb3d968589d8 1 /**
Kojto 90:cb3d968589d8 2 ******************************************************************************
Kojto 90:cb3d968589d8 3 * @file stm32l1xx_hal_smartcard.h
Kojto 90:cb3d968589d8 4 * @author MCD Application Team
Kojto 122:f9eeca106725 5 * @version V1.1.3
Kojto 122:f9eeca106725 6 * @date 04-March-2016
Kojto 90:cb3d968589d8 7 * @brief This file contains all the functions prototypes for the SMARTCARD
Kojto 90:cb3d968589d8 8 * firmware library.
Kojto 90:cb3d968589d8 9 ******************************************************************************
Kojto 90:cb3d968589d8 10 * @attention
Kojto 90:cb3d968589d8 11 *
Kojto 122:f9eeca106725 12 * <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
Kojto 90:cb3d968589d8 13 *
Kojto 90:cb3d968589d8 14 * Redistribution and use in source and binary forms, with or without modification,
Kojto 90:cb3d968589d8 15 * are permitted provided that the following conditions are met:
Kojto 90:cb3d968589d8 16 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 90:cb3d968589d8 17 * this list of conditions and the following disclaimer.
Kojto 90:cb3d968589d8 18 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 90:cb3d968589d8 19 * this list of conditions and the following disclaimer in the documentation
Kojto 90:cb3d968589d8 20 * and/or other materials provided with the distribution.
Kojto 90:cb3d968589d8 21 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 90:cb3d968589d8 22 * may be used to endorse or promote products derived from this software
Kojto 90:cb3d968589d8 23 * without specific prior written permission.
Kojto 90:cb3d968589d8 24 *
Kojto 90:cb3d968589d8 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 90:cb3d968589d8 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 90:cb3d968589d8 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 90:cb3d968589d8 28 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 90:cb3d968589d8 29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 90:cb3d968589d8 30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 90:cb3d968589d8 31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 90:cb3d968589d8 32 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 90:cb3d968589d8 33 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 90:cb3d968589d8 34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 90:cb3d968589d8 35 *
Kojto 90:cb3d968589d8 36 ******************************************************************************
Kojto 90:cb3d968589d8 37 */
Kojto 90:cb3d968589d8 38
Kojto 90:cb3d968589d8 39 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 90:cb3d968589d8 40 #ifndef __STM32L1xx_HAL_SMARTCARD_H
Kojto 90:cb3d968589d8 41 #define __STM32L1xx_HAL_SMARTCARD_H
Kojto 90:cb3d968589d8 42
Kojto 90:cb3d968589d8 43 #ifdef __cplusplus
Kojto 90:cb3d968589d8 44 extern "C" {
Kojto 90:cb3d968589d8 45 #endif
Kojto 90:cb3d968589d8 46
Kojto 90:cb3d968589d8 47 /* Includes ------------------------------------------------------------------*/
Kojto 90:cb3d968589d8 48 #include "stm32l1xx_hal_def.h"
Kojto 90:cb3d968589d8 49
Kojto 90:cb3d968589d8 50 /** @addtogroup STM32L1xx_HAL_Driver
Kojto 90:cb3d968589d8 51 * @{
Kojto 90:cb3d968589d8 52 */
Kojto 90:cb3d968589d8 53
Kojto 90:cb3d968589d8 54 /** @addtogroup SMARTCARD
Kojto 90:cb3d968589d8 55 * @{
Kojto 90:cb3d968589d8 56 */
Kojto 90:cb3d968589d8 57
Kojto 90:cb3d968589d8 58 /* Exported types ------------------------------------------------------------*/
Kojto 90:cb3d968589d8 59 /** @defgroup SMARTCARD_Exported_Types SMARTCARD Exported Types
Kojto 90:cb3d968589d8 60 * @{
Kojto 90:cb3d968589d8 61 */
Kojto 90:cb3d968589d8 62
Kojto 90:cb3d968589d8 63
Kojto 90:cb3d968589d8 64 /**
Kojto 90:cb3d968589d8 65 * @brief SMARTCARD Init Structure definition
Kojto 90:cb3d968589d8 66 */
Kojto 90:cb3d968589d8 67 typedef struct
Kojto 90:cb3d968589d8 68 {
Kojto 90:cb3d968589d8 69 uint32_t BaudRate; /*!< This member configures the SmartCard communication baud rate.
Kojto 90:cb3d968589d8 70 The baud rate is computed using the following formula:
Kojto 122:f9eeca106725 71 - IntegerDivider = ((PCLKx) / (16 * (hsmartcard->Init.BaudRate)))
Kojto 122:f9eeca106725 72 - FractionalDivider = ((IntegerDivider - ((uint32_t) IntegerDivider)) * 16) + 0.5 */
Kojto 90:cb3d968589d8 73
Kojto 90:cb3d968589d8 74 uint32_t WordLength; /*!< Specifies the number of data bits transmitted or received in a frame.
Kojto 90:cb3d968589d8 75 This parameter can be a value of @ref SMARTCARD_Word_Length */
Kojto 90:cb3d968589d8 76
Kojto 90:cb3d968589d8 77 uint32_t StopBits; /*!< Specifies the number of stop bits transmitted.
Kojto 90:cb3d968589d8 78 This parameter can be a value of @ref SMARTCARD_Stop_Bits */
Kojto 90:cb3d968589d8 79
Kojto 122:f9eeca106725 80 uint32_t Parity; /*!< Specifies the parity mode.
Kojto 90:cb3d968589d8 81 This parameter can be a value of @ref SMARTCARD_Parity
Kojto 90:cb3d968589d8 82 @note When parity is enabled, the computed parity is inserted
Kojto 90:cb3d968589d8 83 at the MSB position of the transmitted data (9th bit when
Kojto 90:cb3d968589d8 84 the word length is set to 9 data bits; 8th bit when the
Kojto 90:cb3d968589d8 85 word length is set to 8 data bits).*/
Kojto 90:cb3d968589d8 86
Kojto 122:f9eeca106725 87 uint32_t Mode; /*!< Specifies whether the Receive or Transmit mode is enabled or disabled.
Kojto 90:cb3d968589d8 88 This parameter can be a value of @ref SMARTCARD_Mode */
Kojto 90:cb3d968589d8 89
Kojto 90:cb3d968589d8 90 uint32_t CLKPolarity; /*!< Specifies the steady state of the serial clock.
Kojto 90:cb3d968589d8 91 This parameter can be a value of @ref SMARTCARD_Clock_Polarity */
Kojto 90:cb3d968589d8 92
Kojto 90:cb3d968589d8 93 uint32_t CLKPhase; /*!< Specifies the clock transition on which the bit capture is made.
Kojto 90:cb3d968589d8 94 This parameter can be a value of @ref SMARTCARD_Clock_Phase */
Kojto 90:cb3d968589d8 95
Kojto 90:cb3d968589d8 96 uint32_t CLKLastBit; /*!< Specifies whether the clock pulse corresponding to the last transmitted
Kojto 90:cb3d968589d8 97 data bit (MSB) has to be output on the SCLK pin in synchronous mode.
Kojto 90:cb3d968589d8 98 This parameter can be a value of @ref SMARTCARD_Last_Bit */
Kojto 90:cb3d968589d8 99
Kojto 122:f9eeca106725 100 uint32_t Prescaler; /*!< Specifies the SmartCard Prescaler value used for dividing the system clock
Kojto 122:f9eeca106725 101 to provide the smartcard clock. The value given in the register
Kojto 122:f9eeca106725 102 (5 significant bits) is multiplied by 2 to give the division factor of
Kojto 122:f9eeca106725 103 the source clock frequency;
Kojto 122:f9eeca106725 104 This parameter can be a value of @ref SMARTCARD_Prescaler */
Kojto 90:cb3d968589d8 105
Kojto 122:f9eeca106725 106 uint32_t GuardTime; /*!< Specifies the SmartCard Guard Time value in terms of number
Kojto 122:f9eeca106725 107 of baud clocks */
Kojto 90:cb3d968589d8 108
Kojto 90:cb3d968589d8 109 uint32_t NACKState; /*!< Specifies the SmartCard NACK Transmission state
Kojto 90:cb3d968589d8 110 This parameter can be a value of @ref SMARTCARD_NACK_State */
Kojto 90:cb3d968589d8 111 }SMARTCARD_InitTypeDef;
Kojto 90:cb3d968589d8 112
Kojto 90:cb3d968589d8 113 /**
Kojto 90:cb3d968589d8 114 * @brief HAL State structures definition
Kojto 90:cb3d968589d8 115 */
Kojto 90:cb3d968589d8 116 typedef enum
Kojto 90:cb3d968589d8 117 {
Kojto 90:cb3d968589d8 118 HAL_SMARTCARD_STATE_RESET = 0x00, /*!< Peripheral is not yet Initialized */
Kojto 90:cb3d968589d8 119 HAL_SMARTCARD_STATE_READY = 0x01, /*!< Peripheral Initialized and ready for use */
Kojto 90:cb3d968589d8 120 HAL_SMARTCARD_STATE_BUSY = 0x02, /*!< an internal process is ongoing */
Kojto 90:cb3d968589d8 121 HAL_SMARTCARD_STATE_BUSY_TX = 0x12, /*!< Data Transmission process is ongoing */
Kojto 90:cb3d968589d8 122 HAL_SMARTCARD_STATE_BUSY_RX = 0x22, /*!< Data Reception process is ongoing */
Kojto 90:cb3d968589d8 123 HAL_SMARTCARD_STATE_BUSY_TX_RX = 0x32, /*!< Data Transmission and Reception process is ongoing */
Kojto 90:cb3d968589d8 124 HAL_SMARTCARD_STATE_TIMEOUT = 0x03, /*!< Timeout state */
Kojto 90:cb3d968589d8 125 HAL_SMARTCARD_STATE_ERROR = 0x04 /*!< Error */
Kojto 90:cb3d968589d8 126 }HAL_SMARTCARD_StateTypeDef;
Kojto 90:cb3d968589d8 127
Kojto 90:cb3d968589d8 128
Kojto 90:cb3d968589d8 129 /**
Kojto 90:cb3d968589d8 130 * @brief SMARTCARD handle Structure definition
Kojto 90:cb3d968589d8 131 */
Kojto 90:cb3d968589d8 132 typedef struct
Kojto 90:cb3d968589d8 133 {
Kojto 122:f9eeca106725 134 USART_TypeDef *Instance; /*!< USART registers base address */
Kojto 90:cb3d968589d8 135
Kojto 122:f9eeca106725 136 SMARTCARD_InitTypeDef Init; /*!< SmartCard communication parameters */
Kojto 90:cb3d968589d8 137
Kojto 122:f9eeca106725 138 uint8_t *pTxBuffPtr; /*!< Pointer to SmartCard Tx transfer Buffer */
Kojto 90:cb3d968589d8 139
Kojto 122:f9eeca106725 140 uint16_t TxXferSize; /*!< SmartCard Tx Transfer size */
Kojto 90:cb3d968589d8 141
Kojto 122:f9eeca106725 142 uint16_t TxXferCount; /*!< SmartCard Tx Transfer Counter */
Kojto 90:cb3d968589d8 143
Kojto 122:f9eeca106725 144 uint8_t *pRxBuffPtr; /*!< Pointer to SmartCard Rx transfer Buffer */
Kojto 90:cb3d968589d8 145
Kojto 122:f9eeca106725 146 uint16_t RxXferSize; /*!< SmartCard Rx Transfer size */
Kojto 90:cb3d968589d8 147
Kojto 122:f9eeca106725 148 uint16_t RxXferCount; /*!< SmartCard Rx Transfer Counter */
Kojto 90:cb3d968589d8 149
Kojto 122:f9eeca106725 150 DMA_HandleTypeDef *hdmatx; /*!< SmartCard Tx DMA Handle parameters */
Kojto 90:cb3d968589d8 151
Kojto 122:f9eeca106725 152 DMA_HandleTypeDef *hdmarx; /*!< SmartCard Rx DMA Handle parameters */
Kojto 90:cb3d968589d8 153
Kojto 122:f9eeca106725 154 HAL_LockTypeDef Lock; /*!< Locking object */
Kojto 90:cb3d968589d8 155
Kojto 122:f9eeca106725 156 __IO HAL_SMARTCARD_StateTypeDef State; /*!< SmartCard communication state */
Kojto 90:cb3d968589d8 157
Kojto 122:f9eeca106725 158 __IO uint32_t ErrorCode; /*!< SmartCard Error code */
Kojto 90:cb3d968589d8 159 }SMARTCARD_HandleTypeDef;
Kojto 90:cb3d968589d8 160
Kojto 90:cb3d968589d8 161 /**
Kojto 90:cb3d968589d8 162 * @}
Kojto 90:cb3d968589d8 163 */
Kojto 90:cb3d968589d8 164
Kojto 90:cb3d968589d8 165 /* Exported constants --------------------------------------------------------*/
Kojto 90:cb3d968589d8 166 /** @defgroup SMARTCARD_Exported_Constants SMARTCARD Exported constants
Kojto 90:cb3d968589d8 167 * @{
Kojto 90:cb3d968589d8 168 */
Kojto 90:cb3d968589d8 169
Kojto 122:f9eeca106725 170 /** @defgroup SMARTCARD_Error_Codes SMARTCARD Error Codes
Kojto 122:f9eeca106725 171 * @{
Kojto 122:f9eeca106725 172 */
Kojto 122:f9eeca106725 173 #define HAL_SMARTCARD_ERROR_NONE ((uint32_t)0x00) /*!< No error */
Kojto 122:f9eeca106725 174 #define HAL_SMARTCARD_ERROR_PE ((uint32_t)0x01) /*!< Parity error */
Kojto 122:f9eeca106725 175 #define HAL_SMARTCARD_ERROR_NE ((uint32_t)0x02) /*!< Noise error */
Kojto 122:f9eeca106725 176 #define HAL_SMARTCARD_ERROR_FE ((uint32_t)0x04) /*!< frame error */
Kojto 122:f9eeca106725 177 #define HAL_SMARTCARD_ERROR_ORE ((uint32_t)0x08) /*!< Overrun error */
Kojto 122:f9eeca106725 178 #define HAL_SMARTCARD_ERROR_DMA ((uint32_t)0x10) /*!< DMA transfer error */
Kojto 122:f9eeca106725 179
Kojto 122:f9eeca106725 180 /**
Kojto 122:f9eeca106725 181 * @}
Kojto 122:f9eeca106725 182 */
Kojto 122:f9eeca106725 183
Kojto 122:f9eeca106725 184
Kojto 90:cb3d968589d8 185 /** @defgroup SMARTCARD_Word_Length SMARTCARD Word Length
Kojto 90:cb3d968589d8 186 * @{
Kojto 90:cb3d968589d8 187 */
Kojto 90:cb3d968589d8 188 #define SMARTCARD_WORDLENGTH_9B ((uint32_t)USART_CR1_M)
Kojto 122:f9eeca106725 189
Kojto 90:cb3d968589d8 190 /**
Kojto 90:cb3d968589d8 191 * @}
Kojto 90:cb3d968589d8 192 */
Kojto 90:cb3d968589d8 193
Kojto 90:cb3d968589d8 194 /** @defgroup SMARTCARD_Stop_Bits SMARTCARD Number of Stop Bits
Kojto 90:cb3d968589d8 195 * @{
Kojto 90:cb3d968589d8 196 */
Kojto 90:cb3d968589d8 197 #define SMARTCARD_STOPBITS_0_5 ((uint32_t)USART_CR2_STOP_0)
Kojto 90:cb3d968589d8 198 #define SMARTCARD_STOPBITS_1_5 ((uint32_t)(USART_CR2_STOP_0 | USART_CR2_STOP_1))
Kojto 90:cb3d968589d8 199 /**
Kojto 90:cb3d968589d8 200 * @}
Kojto 90:cb3d968589d8 201 */
Kojto 90:cb3d968589d8 202
Kojto 90:cb3d968589d8 203 /** @defgroup SMARTCARD_Parity SMARTCARD Parity
Kojto 90:cb3d968589d8 204 * @{
Kojto 90:cb3d968589d8 205 */
Kojto 90:cb3d968589d8 206 #define SMARTCARD_PARITY_EVEN ((uint32_t)USART_CR1_PCE)
Kojto 90:cb3d968589d8 207 #define SMARTCARD_PARITY_ODD ((uint32_t)(USART_CR1_PCE | USART_CR1_PS))
Kojto 90:cb3d968589d8 208 /**
Kojto 90:cb3d968589d8 209 * @}
Kojto 90:cb3d968589d8 210 */
Kojto 90:cb3d968589d8 211
Kojto 90:cb3d968589d8 212 /** @defgroup SMARTCARD_Mode SMARTCARD Mode
Kojto 90:cb3d968589d8 213 * @{
Kojto 90:cb3d968589d8 214 */
Kojto 90:cb3d968589d8 215 #define SMARTCARD_MODE_RX ((uint32_t)USART_CR1_RE)
Kojto 90:cb3d968589d8 216 #define SMARTCARD_MODE_TX ((uint32_t)USART_CR1_TE)
Kojto 90:cb3d968589d8 217 #define SMARTCARD_MODE_TX_RX ((uint32_t)(USART_CR1_TE |USART_CR1_RE))
Kojto 90:cb3d968589d8 218 /**
Kojto 90:cb3d968589d8 219 * @}
Kojto 90:cb3d968589d8 220 */
Kojto 90:cb3d968589d8 221
Kojto 90:cb3d968589d8 222 /** @defgroup SMARTCARD_Clock_Polarity SMARTCARD Clock Polarity
Kojto 90:cb3d968589d8 223 * @{
Kojto 90:cb3d968589d8 224 */
Kojto 90:cb3d968589d8 225 #define SMARTCARD_POLARITY_LOW ((uint32_t)0x00000000)
Kojto 90:cb3d968589d8 226 #define SMARTCARD_POLARITY_HIGH ((uint32_t)USART_CR2_CPOL)
Kojto 90:cb3d968589d8 227 /**
Kojto 90:cb3d968589d8 228 * @}
Kojto 90:cb3d968589d8 229 */
Kojto 90:cb3d968589d8 230
Kojto 90:cb3d968589d8 231 /** @defgroup SMARTCARD_Clock_Phase SMARTCARD Clock Phase
Kojto 90:cb3d968589d8 232 * @{
Kojto 90:cb3d968589d8 233 */
Kojto 90:cb3d968589d8 234 #define SMARTCARD_PHASE_1EDGE ((uint32_t)0x00000000)
Kojto 90:cb3d968589d8 235 #define SMARTCARD_PHASE_2EDGE ((uint32_t)USART_CR2_CPHA)
Kojto 90:cb3d968589d8 236 /**
Kojto 90:cb3d968589d8 237 * @}
Kojto 90:cb3d968589d8 238 */
Kojto 90:cb3d968589d8 239
Kojto 90:cb3d968589d8 240 /** @defgroup SMARTCARD_Last_Bit SMARTCARD Last Bit
Kojto 90:cb3d968589d8 241 * @{
Kojto 90:cb3d968589d8 242 */
Kojto 90:cb3d968589d8 243 #define SMARTCARD_LASTBIT_DISABLE ((uint32_t)0x00000000)
Kojto 90:cb3d968589d8 244 #define SMARTCARD_LASTBIT_ENABLE ((uint32_t)USART_CR2_LBCL)
Kojto 122:f9eeca106725 245 /**
Kojto 122:f9eeca106725 246 * @}
Kojto 122:f9eeca106725 247 */
Kojto 122:f9eeca106725 248
Kojto 122:f9eeca106725 249 /** @defgroup SMARTCARD_OneBit_Sampling SMARTCARD One Bit Sampling Method
Kojto 122:f9eeca106725 250 * @{
Kojto 122:f9eeca106725 251 */
Kojto 122:f9eeca106725 252 #define SMARTCARD_ONE_BIT_SAMPLE_DISABLE ((uint32_t)0x00000000)
Kojto 122:f9eeca106725 253 #define SMARTCARD_ONE_BIT_SAMPLE_ENABLE ((uint32_t)USART_CR3_ONEBIT)
Kojto 90:cb3d968589d8 254 /**
Kojto 90:cb3d968589d8 255 * @}
Kojto 90:cb3d968589d8 256 */
Kojto 90:cb3d968589d8 257
Kojto 90:cb3d968589d8 258 /** @defgroup SMARTCARD_NACK_State SMARTCARD NACK State
Kojto 90:cb3d968589d8 259 * @{
Kojto 90:cb3d968589d8 260 */
Kojto 122:f9eeca106725 261 #define SMARTCARD_NACK_ENABLE ((uint32_t)USART_CR3_NACK)
Kojto 122:f9eeca106725 262 #define SMARTCARD_NACK_DISABLE ((uint32_t)0x00000000)
Kojto 90:cb3d968589d8 263 /**
Kojto 90:cb3d968589d8 264 * @}
Kojto 90:cb3d968589d8 265 */
Kojto 90:cb3d968589d8 266
Kojto 90:cb3d968589d8 267 /** @defgroup SMARTCARD_DMA_Requests SMARTCARD DMA requests
Kojto 90:cb3d968589d8 268 * @{
Kojto 90:cb3d968589d8 269 */
Kojto 90:cb3d968589d8 270
Kojto 122:f9eeca106725 271 #define SMARTCARD_DMAREQ_TX ((uint32_t)USART_CR3_DMAT)
Kojto 122:f9eeca106725 272 #define SMARTCARD_DMAREQ_RX ((uint32_t)USART_CR3_DMAR)
Kojto 90:cb3d968589d8 273
Kojto 90:cb3d968589d8 274 /**
Kojto 90:cb3d968589d8 275 * @}
Kojto 90:cb3d968589d8 276 */
Kojto 90:cb3d968589d8 277
Kojto 122:f9eeca106725 278 /** @defgroup SMARTCARD_Prescaler SMARTCARD Prescaler
Kojto 122:f9eeca106725 279 * @{
Kojto 122:f9eeca106725 280 */
Kojto 122:f9eeca106725 281 #define SMARTCARD_PRESCALER_SYSCLK_DIV2 ((uint32_t)0x00000001) /*!< SYSCLK divided by 2 */
Kojto 122:f9eeca106725 282 #define SMARTCARD_PRESCALER_SYSCLK_DIV4 ((uint32_t)0x00000002) /*!< SYSCLK divided by 4 */
Kojto 122:f9eeca106725 283 #define SMARTCARD_PRESCALER_SYSCLK_DIV6 ((uint32_t)0x00000003) /*!< SYSCLK divided by 6 */
Kojto 122:f9eeca106725 284 #define SMARTCARD_PRESCALER_SYSCLK_DIV8 ((uint32_t)0x00000004) /*!< SYSCLK divided by 8 */
Kojto 122:f9eeca106725 285 #define SMARTCARD_PRESCALER_SYSCLK_DIV10 ((uint32_t)0x00000005) /*!< SYSCLK divided by 10 */
Kojto 122:f9eeca106725 286 #define SMARTCARD_PRESCALER_SYSCLK_DIV12 ((uint32_t)0x00000006) /*!< SYSCLK divided by 12 */
Kojto 122:f9eeca106725 287 #define SMARTCARD_PRESCALER_SYSCLK_DIV14 ((uint32_t)0x00000007) /*!< SYSCLK divided by 14 */
Kojto 122:f9eeca106725 288 #define SMARTCARD_PRESCALER_SYSCLK_DIV16 ((uint32_t)0x00000008) /*!< SYSCLK divided by 16 */
Kojto 122:f9eeca106725 289 #define SMARTCARD_PRESCALER_SYSCLK_DIV18 ((uint32_t)0x00000009) /*!< SYSCLK divided by 18 */
Kojto 122:f9eeca106725 290 #define SMARTCARD_PRESCALER_SYSCLK_DIV20 ((uint32_t)0x0000000A) /*!< SYSCLK divided by 20 */
Kojto 122:f9eeca106725 291 #define SMARTCARD_PRESCALER_SYSCLK_DIV22 ((uint32_t)0x0000000B) /*!< SYSCLK divided by 22 */
Kojto 122:f9eeca106725 292 #define SMARTCARD_PRESCALER_SYSCLK_DIV24 ((uint32_t)0x0000000C) /*!< SYSCLK divided by 24 */
Kojto 122:f9eeca106725 293 #define SMARTCARD_PRESCALER_SYSCLK_DIV26 ((uint32_t)0x0000000D) /*!< SYSCLK divided by 26 */
Kojto 122:f9eeca106725 294 #define SMARTCARD_PRESCALER_SYSCLK_DIV28 ((uint32_t)0x0000000E) /*!< SYSCLK divided by 28 */
Kojto 122:f9eeca106725 295 #define SMARTCARD_PRESCALER_SYSCLK_DIV30 ((uint32_t)0x0000000F) /*!< SYSCLK divided by 30 */
Kojto 122:f9eeca106725 296 #define SMARTCARD_PRESCALER_SYSCLK_DIV32 ((uint32_t)0x00000010) /*!< SYSCLK divided by 32 */
Kojto 122:f9eeca106725 297 #define SMARTCARD_PRESCALER_SYSCLK_DIV34 ((uint32_t)0x00000011) /*!< SYSCLK divided by 34 */
Kojto 122:f9eeca106725 298 #define SMARTCARD_PRESCALER_SYSCLK_DIV36 ((uint32_t)0x00000012) /*!< SYSCLK divided by 36 */
Kojto 122:f9eeca106725 299 #define SMARTCARD_PRESCALER_SYSCLK_DIV38 ((uint32_t)0x00000013) /*!< SYSCLK divided by 38 */
Kojto 122:f9eeca106725 300 #define SMARTCARD_PRESCALER_SYSCLK_DIV40 ((uint32_t)0x00000014) /*!< SYSCLK divided by 40 */
Kojto 122:f9eeca106725 301 #define SMARTCARD_PRESCALER_SYSCLK_DIV42 ((uint32_t)0x00000015) /*!< SYSCLK divided by 42 */
Kojto 122:f9eeca106725 302 #define SMARTCARD_PRESCALER_SYSCLK_DIV44 ((uint32_t)0x00000016) /*!< SYSCLK divided by 44 */
Kojto 122:f9eeca106725 303 #define SMARTCARD_PRESCALER_SYSCLK_DIV46 ((uint32_t)0x00000017) /*!< SYSCLK divided by 46 */
Kojto 122:f9eeca106725 304 #define SMARTCARD_PRESCALER_SYSCLK_DIV48 ((uint32_t)0x00000018) /*!< SYSCLK divided by 48 */
Kojto 122:f9eeca106725 305 #define SMARTCARD_PRESCALER_SYSCLK_DIV50 ((uint32_t)0x00000019) /*!< SYSCLK divided by 50 */
Kojto 122:f9eeca106725 306 #define SMARTCARD_PRESCALER_SYSCLK_DIV52 ((uint32_t)0x0000001A) /*!< SYSCLK divided by 52 */
Kojto 122:f9eeca106725 307 #define SMARTCARD_PRESCALER_SYSCLK_DIV54 ((uint32_t)0x0000001B) /*!< SYSCLK divided by 54 */
Kojto 122:f9eeca106725 308 #define SMARTCARD_PRESCALER_SYSCLK_DIV56 ((uint32_t)0x0000001C) /*!< SYSCLK divided by 56 */
Kojto 122:f9eeca106725 309 #define SMARTCARD_PRESCALER_SYSCLK_DIV58 ((uint32_t)0x0000001D) /*!< SYSCLK divided by 58 */
Kojto 122:f9eeca106725 310 #define SMARTCARD_PRESCALER_SYSCLK_DIV60 ((uint32_t)0x0000001E) /*!< SYSCLK divided by 60 */
Kojto 122:f9eeca106725 311 #define SMARTCARD_PRESCALER_SYSCLK_DIV62 ((uint32_t)0x0000001F) /*!< SYSCLK divided by 62 */
Kojto 122:f9eeca106725 312 /**
Kojto 122:f9eeca106725 313 * @}
Kojto 122:f9eeca106725 314 */
Kojto 122:f9eeca106725 315
Kojto 122:f9eeca106725 316
Kojto 122:f9eeca106725 317
Kojto 90:cb3d968589d8 318 /** @defgroup SMARTCARD_Flags SMARTCARD Flags
Kojto 90:cb3d968589d8 319 * Elements values convention: 0xXXXX
Kojto 90:cb3d968589d8 320 * - 0xXXXX : Flag mask in the SR register
Kojto 90:cb3d968589d8 321 * @{
Kojto 90:cb3d968589d8 322 */
Kojto 90:cb3d968589d8 323
Kojto 122:f9eeca106725 324 #define SMARTCARD_FLAG_TXE ((uint32_t)USART_SR_TXE)
Kojto 122:f9eeca106725 325 #define SMARTCARD_FLAG_TC ((uint32_t)USART_SR_TC)
Kojto 122:f9eeca106725 326 #define SMARTCARD_FLAG_RXNE ((uint32_t)USART_SR_RXNE)
Kojto 122:f9eeca106725 327 #define SMARTCARD_FLAG_IDLE ((uint32_t)USART_SR_IDLE)
Kojto 122:f9eeca106725 328 #define SMARTCARD_FLAG_ORE ((uint32_t)USART_SR_ORE)
Kojto 122:f9eeca106725 329 #define SMARTCARD_FLAG_NE ((uint32_t)USART_SR_NE)
Kojto 122:f9eeca106725 330 #define SMARTCARD_FLAG_FE ((uint32_t)USART_SR_FE)
Kojto 122:f9eeca106725 331 #define SMARTCARD_FLAG_PE ((uint32_t)USART_SR_PE)
Kojto 90:cb3d968589d8 332 /**
Kojto 90:cb3d968589d8 333 * @}
Kojto 90:cb3d968589d8 334 */
Kojto 90:cb3d968589d8 335
Kojto 90:cb3d968589d8 336 /** @defgroup SMARTCARD_Interrupt_definition SMARTCARD Interrupts Definition
Kojto 90:cb3d968589d8 337 * Elements values convention: 0xY000XXXX
Kojto 122:f9eeca106725 338 * - XXXX : Interrupt mask (16 bits) in the Y register
Kojto 90:cb3d968589d8 339 * - Y : Interrupt source register (4 bits)
Kojto 122:f9eeca106725 340 * - 0001: CR1 register
Kojto 122:f9eeca106725 341 * - 0010: CR3 register
Kojto 90:cb3d968589d8 342
Kojto 90:cb3d968589d8 343 *
Kojto 90:cb3d968589d8 344 * @{
Kojto 90:cb3d968589d8 345 */
Kojto 90:cb3d968589d8 346
Kojto 122:f9eeca106725 347 #define SMARTCARD_IT_PE ((uint32_t)(SMARTCARD_CR1_REG_INDEX << 28 | USART_CR1_PEIE))
Kojto 122:f9eeca106725 348 #define SMARTCARD_IT_TXE ((uint32_t)(SMARTCARD_CR1_REG_INDEX << 28 | USART_CR1_TXEIE))
Kojto 122:f9eeca106725 349 #define SMARTCARD_IT_TC ((uint32_t)(SMARTCARD_CR1_REG_INDEX << 28 | USART_CR1_TCIE))
Kojto 122:f9eeca106725 350 #define SMARTCARD_IT_RXNE ((uint32_t)(SMARTCARD_CR1_REG_INDEX << 28 | USART_CR1_RXNEIE))
Kojto 122:f9eeca106725 351 #define SMARTCARD_IT_IDLE ((uint32_t)(SMARTCARD_CR1_REG_INDEX << 28 | USART_CR1_IDLEIE))
Kojto 122:f9eeca106725 352 #define SMARTCARD_IT_ERR ((uint32_t)(SMARTCARD_CR3_REG_INDEX << 28 | USART_CR3_EIE))
Kojto 90:cb3d968589d8 353
Kojto 90:cb3d968589d8 354 /**
Kojto 90:cb3d968589d8 355 * @}
Kojto 90:cb3d968589d8 356 */
Kojto 90:cb3d968589d8 357
Kojto 90:cb3d968589d8 358 /**
Kojto 90:cb3d968589d8 359 * @}
Kojto 90:cb3d968589d8 360 */
Kojto 122:f9eeca106725 361
Kojto 122:f9eeca106725 362
Kojto 90:cb3d968589d8 363 /* Exported macro ------------------------------------------------------------*/
Kojto 90:cb3d968589d8 364 /** @defgroup SMARTCARD_Exported_Macros SMARTCARD Exported Macros
Kojto 90:cb3d968589d8 365 * @{
Kojto 90:cb3d968589d8 366 */
Kojto 90:cb3d968589d8 367
Kojto 90:cb3d968589d8 368
Kojto 90:cb3d968589d8 369 /** @brief Reset SMARTCARD handle state
Kojto 90:cb3d968589d8 370 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 122:f9eeca106725 371 * SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device).
Kojto 90:cb3d968589d8 372 * @retval None
Kojto 90:cb3d968589d8 373 */
Kojto 90:cb3d968589d8 374 #define __HAL_SMARTCARD_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_SMARTCARD_STATE_RESET)
Kojto 90:cb3d968589d8 375
Kojto 122:f9eeca106725 376 /** @brief Flush the Smartcard DR register
Kojto 90:cb3d968589d8 377 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 122:f9eeca106725 378 * SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device).
Kojto 122:f9eeca106725 379 * @retval None
Kojto 90:cb3d968589d8 380 */
Kojto 90:cb3d968589d8 381 #define __HAL_SMARTCARD_FLUSH_DRREGISTER(__HANDLE__) ((__HANDLE__)->Instance->DR)
Kojto 90:cb3d968589d8 382
Kojto 122:f9eeca106725 383 /** @brief Check whether the specified Smartcard flag is set or not.
Kojto 90:cb3d968589d8 384 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 122:f9eeca106725 385 * SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device).
Kojto 90:cb3d968589d8 386 * @param __FLAG__: specifies the flag to check.
Kojto 122:f9eeca106725 387 * This parameter can be one of the following values:
Kojto 90:cb3d968589d8 388 * @arg SMARTCARD_FLAG_TXE: Transmit data register empty flag
Kojto 90:cb3d968589d8 389 * @arg SMARTCARD_FLAG_TC: Transmission Complete flag
Kojto 90:cb3d968589d8 390 * @arg SMARTCARD_FLAG_RXNE: Receive data register not empty flag
Kojto 90:cb3d968589d8 391 * @arg SMARTCARD_FLAG_IDLE: Idle Line detection flag
Kojto 90:cb3d968589d8 392 * @arg SMARTCARD_FLAG_ORE: OverRun Error flag
Kojto 90:cb3d968589d8 393 * @arg SMARTCARD_FLAG_NE: Noise Error flag
Kojto 90:cb3d968589d8 394 * @arg SMARTCARD_FLAG_FE: Framing Error flag
Kojto 90:cb3d968589d8 395 * @arg SMARTCARD_FLAG_PE: Parity Error flag
Kojto 90:cb3d968589d8 396 * @retval The new state of __FLAG__ (TRUE or FALSE).
Kojto 90:cb3d968589d8 397 */
Kojto 90:cb3d968589d8 398 #define __HAL_SMARTCARD_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->SR & (__FLAG__)) == (__FLAG__))
Kojto 90:cb3d968589d8 399
Kojto 122:f9eeca106725 400 /** @brief Clear the specified Smartcard pending flags.
Kojto 90:cb3d968589d8 401 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 122:f9eeca106725 402 * SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device).
Kojto 90:cb3d968589d8 403 * @param __FLAG__: specifies the flag to check.
Kojto 122:f9eeca106725 404 * This parameter can be any combination of the following values:
Kojto 90:cb3d968589d8 405 * @arg SMARTCARD_FLAG_TC: Transmission Complete flag.
Kojto 90:cb3d968589d8 406 * @arg SMARTCARD_FLAG_RXNE: Receive data register not empty flag.
Kojto 122:f9eeca106725 407 * @retval None
Kojto 90:cb3d968589d8 408 *
Kojto 90:cb3d968589d8 409 * @note PE (Parity error), FE (Framing error), NE (Noise error) and ORE (OverRun
Kojto 90:cb3d968589d8 410 * error) flags are cleared by software sequence: a read operation to
Kojto 90:cb3d968589d8 411 * USART_SR register followed by a read operation to USART_DR register.
Kojto 90:cb3d968589d8 412 * @note RXNE flag can be also cleared by a read to the USART_DR register.
Kojto 90:cb3d968589d8 413 * @note TC flag can be also cleared by software sequence: a read operation to
Kojto 90:cb3d968589d8 414 * USART_SR register followed by a write operation to USART_DR register.
Kojto 90:cb3d968589d8 415 * @note TXE flag is cleared only by a write to the USART_DR register.
Kojto 90:cb3d968589d8 416 *
Kojto 90:cb3d968589d8 417 * @retval None
Kojto 90:cb3d968589d8 418 */
Kojto 90:cb3d968589d8 419 #define __HAL_SMARTCARD_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->SR = ~(__FLAG__))
Kojto 90:cb3d968589d8 420
Kojto 90:cb3d968589d8 421 /** @brief Clear the SMARTCARD PE pending flag.
Kojto 90:cb3d968589d8 422 * @param __HANDLE__: specifies the USART Handle.
Kojto 122:f9eeca106725 423 * SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device).
Kojto 90:cb3d968589d8 424 * @retval None
Kojto 90:cb3d968589d8 425 */
Kojto 122:f9eeca106725 426 #define __HAL_SMARTCARD_CLEAR_PEFLAG(__HANDLE__) \
Kojto 122:f9eeca106725 427 do{ \
Kojto 122:f9eeca106725 428 __IO uint32_t tmpreg; \
Kojto 122:f9eeca106725 429 tmpreg = (__HANDLE__)->Instance->SR; \
Kojto 122:f9eeca106725 430 tmpreg = (__HANDLE__)->Instance->DR; \
Kojto 122:f9eeca106725 431 UNUSED(tmpreg); \
Kojto 122:f9eeca106725 432 }while(0)
Kojto 122:f9eeca106725 433
Kojto 122:f9eeca106725 434
Kojto 122:f9eeca106725 435
Kojto 90:cb3d968589d8 436 /** @brief Clear the SMARTCARD FE pending flag.
Kojto 90:cb3d968589d8 437 * @param __HANDLE__: specifies the USART Handle.
Kojto 122:f9eeca106725 438 * SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device).
Kojto 90:cb3d968589d8 439 * @retval None
Kojto 90:cb3d968589d8 440 */
Kojto 90:cb3d968589d8 441 #define __HAL_SMARTCARD_CLEAR_FEFLAG(__HANDLE__) __HAL_SMARTCARD_CLEAR_PEFLAG(__HANDLE__)
Kojto 90:cb3d968589d8 442
Kojto 90:cb3d968589d8 443 /** @brief Clear the SMARTCARD NE pending flag.
Kojto 90:cb3d968589d8 444 * @param __HANDLE__: specifies the USART Handle.
Kojto 122:f9eeca106725 445 * SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device).
Kojto 90:cb3d968589d8 446 * @retval None
Kojto 90:cb3d968589d8 447 */
Kojto 90:cb3d968589d8 448 #define __HAL_SMARTCARD_CLEAR_NEFLAG(__HANDLE__) __HAL_SMARTCARD_CLEAR_PEFLAG(__HANDLE__)
Kojto 90:cb3d968589d8 449
Kojto 90:cb3d968589d8 450 /** @brief Clear the SMARTCARD ORE pending flag.
Kojto 90:cb3d968589d8 451 * @param __HANDLE__: specifies the USART Handle.
Kojto 122:f9eeca106725 452 * SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device).
Kojto 90:cb3d968589d8 453 * @retval None
Kojto 90:cb3d968589d8 454 */
Kojto 90:cb3d968589d8 455 #define __HAL_SMARTCARD_CLEAR_OREFLAG(__HANDLE__) __HAL_SMARTCARD_CLEAR_PEFLAG(__HANDLE__)
Kojto 90:cb3d968589d8 456
Kojto 90:cb3d968589d8 457 /** @brief Clear the SMARTCARD IDLE pending flag.
Kojto 90:cb3d968589d8 458 * @param __HANDLE__: specifies the USART Handle.
Kojto 122:f9eeca106725 459 * SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device).
Kojto 90:cb3d968589d8 460 * @retval None
Kojto 90:cb3d968589d8 461 */
Kojto 90:cb3d968589d8 462 #define __HAL_SMARTCARD_CLEAR_IDLEFLAG(__HANDLE__) __HAL_SMARTCARD_CLEAR_PEFLAG(__HANDLE__)
Kojto 90:cb3d968589d8 463
Kojto 122:f9eeca106725 464 /** @brief Enable the specified SmartCard interrupt.
Kojto 90:cb3d968589d8 465 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 122:f9eeca106725 466 * SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device).
Kojto 90:cb3d968589d8 467 * @param __INTERRUPT__: specifies the SMARTCARD interrupt to enable.
Kojto 90:cb3d968589d8 468 * This parameter can be one of the following values:
Kojto 90:cb3d968589d8 469 * @arg SMARTCARD_IT_TXE: Transmit Data Register empty interrupt
Kojto 90:cb3d968589d8 470 * @arg SMARTCARD_IT_TC: Transmission complete interrupt
Kojto 90:cb3d968589d8 471 * @arg SMARTCARD_IT_RXNE: Receive Data register not empty interrupt
Kojto 90:cb3d968589d8 472 * @arg SMARTCARD_IT_IDLE: Idle line detection interrupt
Kojto 90:cb3d968589d8 473 * @arg SMARTCARD_IT_PE: Parity Error interrupt
Kojto 90:cb3d968589d8 474 * @arg SMARTCARD_IT_ERR: Error interrupt(Frame error, noise error, overrun error)
Kojto 122:f9eeca106725 475 * @retval None
Kojto 90:cb3d968589d8 476 */
Kojto 122:f9eeca106725 477 #define __HAL_SMARTCARD_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((((__INTERRUPT__) >> 28) == SMARTCARD_CR1_REG_INDEX)? ((__HANDLE__)->Instance->CR1 |= ((__INTERRUPT__) & SMARTCARD_IT_MASK)): \
Kojto 90:cb3d968589d8 478 ((__HANDLE__)->Instance->CR3 |= ((__INTERRUPT__) & SMARTCARD_IT_MASK)))
Kojto 90:cb3d968589d8 479
Kojto 122:f9eeca106725 480 /** @brief Disable the specified SmartCard interrupts.
Kojto 90:cb3d968589d8 481 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 122:f9eeca106725 482 * SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device).
Kojto 90:cb3d968589d8 483 * @param __INTERRUPT__: specifies the SMARTCARD interrupt to disable.
Kojto 90:cb3d968589d8 484 * This parameter can be one of the following values:
Kojto 90:cb3d968589d8 485 * @arg SMARTCARD_IT_TXE: Transmit Data Register empty interrupt
Kojto 90:cb3d968589d8 486 * @arg SMARTCARD_IT_TC: Transmission complete interrupt
Kojto 90:cb3d968589d8 487 * @arg SMARTCARD_IT_RXNE: Receive Data register not empty interrupt
Kojto 90:cb3d968589d8 488 * @arg SMARTCARD_IT_IDLE: Idle line detection interrupt
Kojto 90:cb3d968589d8 489 * @arg SMARTCARD_IT_PE: Parity Error interrupt
Kojto 90:cb3d968589d8 490 * @arg SMARTCARD_IT_ERR: Error interrupt(Frame error, noise error, overrun error)
Kojto 90:cb3d968589d8 491 */
Kojto 122:f9eeca106725 492 #define __HAL_SMARTCARD_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((((__INTERRUPT__) >> 28) == SMARTCARD_CR1_REG_INDEX)? ((__HANDLE__)->Instance->CR1 &= ~((__INTERRUPT__) & SMARTCARD_IT_MASK)): \
Kojto 90:cb3d968589d8 493 ((__HANDLE__)->Instance->CR3 &= ~ ((__INTERRUPT__) & SMARTCARD_IT_MASK)))
Kojto 90:cb3d968589d8 494
Kojto 122:f9eeca106725 495 /** @brief Check whether the specified SmartCard interrupt has occurred or not.
Kojto 90:cb3d968589d8 496 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 122:f9eeca106725 497 * SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device).
Kojto 90:cb3d968589d8 498 * @param __IT__: specifies the SMARTCARD interrupt source to check.
Kojto 90:cb3d968589d8 499 * This parameter can be one of the following values:
Kojto 90:cb3d968589d8 500 * @arg SMARTCARD_IT_TXE: Transmit Data Register empty interrupt
Kojto 90:cb3d968589d8 501 * @arg SMARTCARD_IT_TC: Transmission complete interrupt
Kojto 90:cb3d968589d8 502 * @arg SMARTCARD_IT_RXNE: Receive Data register not empty interrupt
Kojto 90:cb3d968589d8 503 * @arg SMARTCARD_IT_IDLE: Idle line detection interrupt
Kojto 90:cb3d968589d8 504 * @arg SMARTCARD_IT_ERR: Error interrupt
Kojto 90:cb3d968589d8 505 * @arg SMARTCARD_IT_PE: Parity Error interrupt
Kojto 90:cb3d968589d8 506 * @retval The new state of __IT__ (TRUE or FALSE).
Kojto 90:cb3d968589d8 507 */
Kojto 122:f9eeca106725 508 #define __HAL_SMARTCARD_GET_IT_SOURCE(__HANDLE__, __IT__) (((((__IT__) >> 28) == SMARTCARD_CR1_REG_INDEX)? (__HANDLE__)->Instance->CR1: (__HANDLE__)->Instance->CR3) & (((uint32_t)(__IT__)) & SMARTCARD_IT_MASK))
Kojto 122:f9eeca106725 509
Kojto 122:f9eeca106725 510 /** @brief Enables the SMARTCARD one bit sample method
Kojto 122:f9eeca106725 511 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 122:f9eeca106725 512 * @retval None
Kojto 122:f9eeca106725 513 */
Kojto 122:f9eeca106725 514 #define __HAL_SMARTCARD_ONE_BIT_SAMPLE_ENABLE(__HANDLE__) (SET_BIT((__HANDLE__)->Instance->CR3, (USART_CR3_ONEBIT)))
Kojto 122:f9eeca106725 515
Kojto 122:f9eeca106725 516 /** @brief Disables the SMARTCARD one bit sample method
Kojto 122:f9eeca106725 517 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 122:f9eeca106725 518 * @retval None
Kojto 122:f9eeca106725 519 */
Kojto 122:f9eeca106725 520 #define __HAL_SMARTCARD_ONE_BIT_SAMPLE_DISABLE(__HANDLE__) (CLEAR_BIT((__HANDLE__)->Instance->CR3, (USART_CR3_ONEBIT)))
Kojto 90:cb3d968589d8 521
Kojto 90:cb3d968589d8 522 /** @brief Enable the USART associated to the SMARTCARD Handle
Kojto 90:cb3d968589d8 523 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 122:f9eeca106725 524 * SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device).
Kojto 90:cb3d968589d8 525 * @retval None
Kojto 90:cb3d968589d8 526 */
Kojto 90:cb3d968589d8 527 #define __HAL_SMARTCARD_ENABLE(__HANDLE__) (SET_BIT((__HANDLE__)->Instance->CR1, USART_CR1_UE))
Kojto 90:cb3d968589d8 528
Kojto 90:cb3d968589d8 529 /** @brief Disable the USART associated to the SMARTCARD Handle
Kojto 90:cb3d968589d8 530 * @param __HANDLE__: specifies the SMARTCARD Handle.
Kojto 122:f9eeca106725 531 * SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device).
Kojto 90:cb3d968589d8 532 * @retval None
Kojto 90:cb3d968589d8 533 */
Kojto 90:cb3d968589d8 534 #define __HAL_SMARTCARD_DISABLE(__HANDLE__) (CLEAR_BIT((__HANDLE__)->Instance->CR1, USART_CR1_UE))
Kojto 90:cb3d968589d8 535
Kojto 122:f9eeca106725 536 /** @brief Enable the SmartCard DMA request.
Kojto 122:f9eeca106725 537 * @param __HANDLE__: specifies the SmartCard Handle.
Kojto 122:f9eeca106725 538 * SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device).
Kojto 122:f9eeca106725 539 * @param __REQUEST__: specifies the SmartCard DMA request.
Kojto 122:f9eeca106725 540 * This parameter can be one of the following values:
Kojto 122:f9eeca106725 541 * @arg SMARTCARD_DMAREQ_TX: SmartCard DMA transmit request
Kojto 122:f9eeca106725 542 * @arg SMARTCARD_DMAREQ_RX: SmartCard DMA receive request
Kojto 122:f9eeca106725 543 * @retval None
Kojto 122:f9eeca106725 544 */
Kojto 122:f9eeca106725 545 #define __HAL_SMARTCARD_DMA_REQUEST_ENABLE(__HANDLE__, __REQUEST__) (SET_BIT((__HANDLE__)->Instance->CR3, (__REQUEST__)))
Kojto 122:f9eeca106725 546
Kojto 122:f9eeca106725 547 /** @brief Disable the SmartCard DMA request.
Kojto 122:f9eeca106725 548 * @param __HANDLE__: specifies the SmartCard Handle.
Kojto 122:f9eeca106725 549 * SMARTCARD Handle selects the USARTx peripheral (USART availability and x value depending on device).
Kojto 122:f9eeca106725 550 * @param __REQUEST__: specifies the SmartCard DMA request.
Kojto 122:f9eeca106725 551 * This parameter can be one of the following values:
Kojto 122:f9eeca106725 552 * @arg SMARTCARD_DMAREQ_TX: SmartCard DMA transmit request
Kojto 122:f9eeca106725 553 * @arg SMARTCARD_DMAREQ_RX: SmartCard DMA receive request
Kojto 122:f9eeca106725 554 * @retval None
Kojto 122:f9eeca106725 555 */
Kojto 122:f9eeca106725 556 #define __HAL_SMARTCARD_DMA_REQUEST_DISABLE(__HANDLE__, __REQUEST__) (CLEAR_BIT((__HANDLE__)->Instance->CR3, (__REQUEST__)))
Kojto 122:f9eeca106725 557
Kojto 90:cb3d968589d8 558
Kojto 90:cb3d968589d8 559 /**
Kojto 90:cb3d968589d8 560 * @}
Kojto 90:cb3d968589d8 561 */
Kojto 90:cb3d968589d8 562
Kojto 122:f9eeca106725 563
Kojto 90:cb3d968589d8 564 /* Private macros --------------------------------------------------------*/
Kojto 90:cb3d968589d8 565 /** @defgroup SMARTCARD_Private_Macros SMARTCARD Private Macros
Kojto 90:cb3d968589d8 566 * @{
Kojto 90:cb3d968589d8 567 */
Kojto 90:cb3d968589d8 568
Kojto 122:f9eeca106725 569 #define SMARTCARD_CR1_REG_INDEX 1
Kojto 122:f9eeca106725 570 #define SMARTCARD_CR3_REG_INDEX 3
Kojto 90:cb3d968589d8 571
Kojto 90:cb3d968589d8 572 #define SMARTCARD_DIV(__PCLK__, __BAUD__) (((__PCLK__)*25)/(4*(__BAUD__)))
Kojto 90:cb3d968589d8 573 #define SMARTCARD_DIVMANT(__PCLK__, __BAUD__) (SMARTCARD_DIV((__PCLK__), (__BAUD__))/100)
Kojto 90:cb3d968589d8 574 #define SMARTCARD_DIVFRAQ(__PCLK__, __BAUD__) (((SMARTCARD_DIV((__PCLK__), (__BAUD__)) - (SMARTCARD_DIVMANT((__PCLK__), (__BAUD__)) * 100)) * 16 + 50) / 100)
Kojto 122:f9eeca106725 575 /* UART BRR = mantissa + overflow + fraction
Kojto 122:f9eeca106725 576 = (UART DIVMANT << 4) + (UART DIVFRAQ & 0xF0) + (UART DIVFRAQ & 0x0F) */
Kojto 122:f9eeca106725 577 #define SMARTCARD_BRR(_PCLK_, _BAUD_) (((SMARTCARD_DIVMANT((_PCLK_), (_BAUD_)) << 4) + \
Kojto 122:f9eeca106725 578 (SMARTCARD_DIVFRAQ((_PCLK_), (_BAUD_)) & 0xF0)) + \
Kojto 122:f9eeca106725 579 (SMARTCARD_DIVFRAQ((_PCLK_), (_BAUD_)) & 0x0F))
Kojto 90:cb3d968589d8 580
Kojto 122:f9eeca106725 581 /** Check the Baud rate range.
Kojto 122:f9eeca106725 582 * The maximum Baud Rate is derived from the maximum clock on APB (i.e. 32 MHz)
Kojto 122:f9eeca106725 583 * divided by the smallest oversampling used on the USART (i.e. 16)
Kojto 122:f9eeca106725 584 * __BAUDRATE__: Baud rate set by the configuration function.
Kojto 122:f9eeca106725 585 * Return : TRUE or FALSE
Kojto 90:cb3d968589d8 586 */
Kojto 90:cb3d968589d8 587 #define IS_SMARTCARD_BAUDRATE(__BAUDRATE__) ((__BAUDRATE__) < 2000001)
Kojto 122:f9eeca106725 588
Kojto 122:f9eeca106725 589 #define IS_SMARTCARD_WORD_LENGTH(LENGTH) ((LENGTH) == SMARTCARD_WORDLENGTH_9B)
Kojto 122:f9eeca106725 590
Kojto 122:f9eeca106725 591 #define IS_SMARTCARD_STOPBITS(STOPBITS) (((STOPBITS) == SMARTCARD_STOPBITS_0_5) || \
Kojto 122:f9eeca106725 592 ((STOPBITS) == SMARTCARD_STOPBITS_1_5))
Kojto 122:f9eeca106725 593
Kojto 122:f9eeca106725 594 #define IS_SMARTCARD_PARITY(PARITY) (((PARITY) == SMARTCARD_PARITY_EVEN) || \
Kojto 122:f9eeca106725 595 ((PARITY) == SMARTCARD_PARITY_ODD))
Kojto 122:f9eeca106725 596
Kojto 122:f9eeca106725 597 #define IS_SMARTCARD_MODE(MODE) ((((MODE) & (~((uint32_t)SMARTCARD_MODE_TX_RX))) == 0x00) && \
Kojto 122:f9eeca106725 598 ((MODE) != (uint32_t)0x00000000))
Kojto 122:f9eeca106725 599
Kojto 122:f9eeca106725 600 #define IS_SMARTCARD_POLARITY(CPOL) (((CPOL) == SMARTCARD_POLARITY_LOW) || ((CPOL) == SMARTCARD_POLARITY_HIGH))
Kojto 122:f9eeca106725 601
Kojto 122:f9eeca106725 602 #define IS_SMARTCARD_PHASE(CPHA) (((CPHA) == SMARTCARD_PHASE_1EDGE) || ((CPHA) == SMARTCARD_PHASE_2EDGE))
Kojto 122:f9eeca106725 603
Kojto 122:f9eeca106725 604 #define IS_SMARTCARD_LASTBIT(LASTBIT) (((LASTBIT) == SMARTCARD_LASTBIT_DISABLE) || \
Kojto 122:f9eeca106725 605 ((LASTBIT) == SMARTCARD_LASTBIT_ENABLE))
Kojto 122:f9eeca106725 606
Kojto 122:f9eeca106725 607 #define IS_SMARTCARD_ONE_BIT_SAMPLE(ONEBIT) (((ONEBIT) == SMARTCARD_ONE_BIT_SAMPLE_DISABLE) || \
Kojto 122:f9eeca106725 608 ((ONEBIT) == SMARTCARD_ONE_BIT_SAMPLE_ENABLE))
Kojto 122:f9eeca106725 609
Kojto 122:f9eeca106725 610 #define IS_SMARTCARD_NACK_STATE(NACK) (((NACK) == SMARTCARD_NACK_ENABLE) || \
Kojto 122:f9eeca106725 611 ((NACK) == SMARTCARD_NACK_DISABLE))
Kojto 122:f9eeca106725 612
Kojto 122:f9eeca106725 613 #define IS_SMARTCARD_PRESCALER(PRESCALER) (((PRESCALER) >= SMARTCARD_PRESCALER_SYSCLK_DIV2) && \
Kojto 122:f9eeca106725 614 ((PRESCALER) <= SMARTCARD_PRESCALER_SYSCLK_DIV62) )
Kojto 122:f9eeca106725 615
Kojto 122:f9eeca106725 616 /** SMARTCARD interruptions flag mask
Kojto 122:f9eeca106725 617 *
Kojto 122:f9eeca106725 618 */
Kojto 122:f9eeca106725 619 #define SMARTCARD_IT_MASK ((uint32_t) USART_CR1_PEIE | USART_CR1_TXEIE | USART_CR1_TCIE | USART_CR1_RXNEIE | \
Kojto 122:f9eeca106725 620 USART_CR1_IDLEIE | USART_CR3_EIE )
Kojto 122:f9eeca106725 621
Kojto 122:f9eeca106725 622
Kojto 90:cb3d968589d8 623 /**
Kojto 90:cb3d968589d8 624 * @}
Kojto 90:cb3d968589d8 625 */
Kojto 90:cb3d968589d8 626
Kojto 90:cb3d968589d8 627
Kojto 90:cb3d968589d8 628 /* Exported functions --------------------------------------------------------*/
Kojto 90:cb3d968589d8 629
Kojto 90:cb3d968589d8 630 /** @addtogroup SMARTCARD_Exported_Functions SMARTCARD Exported Functions
Kojto 90:cb3d968589d8 631 * @{
Kojto 90:cb3d968589d8 632 */
Kojto 90:cb3d968589d8 633
Kojto 122:f9eeca106725 634 /** @addtogroup SMARTCARD_Exported_Functions_Group1 Initialization and de-initialization functions
Kojto 90:cb3d968589d8 635 * @{
Kojto 90:cb3d968589d8 636 */
Kojto 90:cb3d968589d8 637
Kojto 90:cb3d968589d8 638 /* Initialization/de-initialization functions **********************************/
Kojto 90:cb3d968589d8 639 HAL_StatusTypeDef HAL_SMARTCARD_Init(SMARTCARD_HandleTypeDef *hsc);
Kojto 90:cb3d968589d8 640 HAL_StatusTypeDef HAL_SMARTCARD_DeInit(SMARTCARD_HandleTypeDef *hsc);
Kojto 90:cb3d968589d8 641 void HAL_SMARTCARD_MspInit(SMARTCARD_HandleTypeDef *hsc);
Kojto 90:cb3d968589d8 642 void HAL_SMARTCARD_MspDeInit(SMARTCARD_HandleTypeDef *hsc);
Kojto 90:cb3d968589d8 643
Kojto 90:cb3d968589d8 644 /**
Kojto 90:cb3d968589d8 645 * @}
Kojto 90:cb3d968589d8 646 */
Kojto 90:cb3d968589d8 647
Kojto 90:cb3d968589d8 648 /** @addtogroup SMARTCARD_Exported_Functions_Group2 IO operation functions
Kojto 90:cb3d968589d8 649 * @{
Kojto 90:cb3d968589d8 650 */
Kojto 90:cb3d968589d8 651
Kojto 90:cb3d968589d8 652 /* IO operation functions *******************************************************/
Kojto 90:cb3d968589d8 653 HAL_StatusTypeDef HAL_SMARTCARD_Transmit(SMARTCARD_HandleTypeDef *hsc, uint8_t *pData, uint16_t Size, uint32_t Timeout);
Kojto 90:cb3d968589d8 654 HAL_StatusTypeDef HAL_SMARTCARD_Receive(SMARTCARD_HandleTypeDef *hsc, uint8_t *pData, uint16_t Size, uint32_t Timeout);
Kojto 90:cb3d968589d8 655 HAL_StatusTypeDef HAL_SMARTCARD_Transmit_IT(SMARTCARD_HandleTypeDef *hsc, uint8_t *pData, uint16_t Size);
Kojto 90:cb3d968589d8 656 HAL_StatusTypeDef HAL_SMARTCARD_Receive_IT(SMARTCARD_HandleTypeDef *hsc, uint8_t *pData, uint16_t Size);
Kojto 90:cb3d968589d8 657 HAL_StatusTypeDef HAL_SMARTCARD_Transmit_DMA(SMARTCARD_HandleTypeDef *hsc, uint8_t *pData, uint16_t Size);
Kojto 90:cb3d968589d8 658 HAL_StatusTypeDef HAL_SMARTCARD_Receive_DMA(SMARTCARD_HandleTypeDef *hsc, uint8_t *pData, uint16_t Size);
Kojto 90:cb3d968589d8 659 void HAL_SMARTCARD_IRQHandler(SMARTCARD_HandleTypeDef *hsc);
Kojto 90:cb3d968589d8 660 void HAL_SMARTCARD_TxCpltCallback(SMARTCARD_HandleTypeDef *hsc);
Kojto 90:cb3d968589d8 661 void HAL_SMARTCARD_RxCpltCallback(SMARTCARD_HandleTypeDef *hsc);
Kojto 90:cb3d968589d8 662 void HAL_SMARTCARD_ErrorCallback(SMARTCARD_HandleTypeDef *hsc);
Kojto 90:cb3d968589d8 663
Kojto 90:cb3d968589d8 664 /**
Kojto 90:cb3d968589d8 665 * @}
Kojto 90:cb3d968589d8 666 */
Kojto 90:cb3d968589d8 667
Kojto 90:cb3d968589d8 668 /** @addtogroup SMARTCARD_Exported_Functions_Group3 Peripheral State and Errors functions
Kojto 90:cb3d968589d8 669 * @{
Kojto 90:cb3d968589d8 670 */
Kojto 90:cb3d968589d8 671
Kojto 90:cb3d968589d8 672 /* Peripheral State and Errors functions functions *****************************/
Kojto 90:cb3d968589d8 673 HAL_SMARTCARD_StateTypeDef HAL_SMARTCARD_GetState(SMARTCARD_HandleTypeDef *hsc);
Kojto 90:cb3d968589d8 674 uint32_t HAL_SMARTCARD_GetError(SMARTCARD_HandleTypeDef *hsc);
Kojto 90:cb3d968589d8 675
Kojto 90:cb3d968589d8 676 /**
Kojto 90:cb3d968589d8 677 * @}
Kojto 90:cb3d968589d8 678 */
Kojto 90:cb3d968589d8 679
Kojto 90:cb3d968589d8 680 /**
Kojto 90:cb3d968589d8 681 * @}
Kojto 90:cb3d968589d8 682 */
Kojto 90:cb3d968589d8 683
Kojto 90:cb3d968589d8 684 /**
Kojto 90:cb3d968589d8 685 * @}
Kojto 90:cb3d968589d8 686 */
Kojto 90:cb3d968589d8 687
Kojto 90:cb3d968589d8 688 /**
Kojto 90:cb3d968589d8 689 * @}
Kojto 90:cb3d968589d8 690 */
Kojto 90:cb3d968589d8 691
Kojto 90:cb3d968589d8 692 #ifdef __cplusplus
Kojto 90:cb3d968589d8 693 }
Kojto 90:cb3d968589d8 694 #endif
Kojto 90:cb3d968589d8 695
Kojto 90:cb3d968589d8 696 #endif /* __STM32L1xx_HAL_SMARTCARD_H */
Kojto 90:cb3d968589d8 697
Kojto 90:cb3d968589d8 698 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/