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 Jan 13 09:48:29 2016 +0000
Revision:
112:6f327212ef96
Release 112 of the mbed library

Changes:
- new platforms - STM32 B96B F446, MOTE_L152RC
- nrf51 - fix serial init bug (character sent)
- stm all devices - fix RTC clocking in the init
- stm f0 - SystemInit clock fix, for SetVector()
- RawSerial - fix for microlib (vsnprintf with size 0)

Who changed what in which revision?

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