meh

Fork of mbed by mbed official

Committer:
ricardobtez
Date:
Tue Apr 05 23:51:21 2016 +0000
Revision:
118:16969dd821af
Parent:
90:cb3d968589d8
dgdgr

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 90:cb3d968589d8 1 /**
Kojto 90:cb3d968589d8 2 ******************************************************************************
Kojto 90:cb3d968589d8 3 * @file stm32f3xx_hal_smartcard_ex.h
Kojto 90:cb3d968589d8 4 * @author MCD Application Team
Kojto 90:cb3d968589d8 5 * @version V1.1.0
Kojto 90:cb3d968589d8 6 * @date 12-Sept-2014
Kojto 90:cb3d968589d8 7 * @brief Header file of SMARTCARD HAL module.
Kojto 90:cb3d968589d8 8 ******************************************************************************
Kojto 90:cb3d968589d8 9 * @attention
Kojto 90:cb3d968589d8 10 *
Kojto 90:cb3d968589d8 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
Kojto 90:cb3d968589d8 12 *
Kojto 90:cb3d968589d8 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 90:cb3d968589d8 14 * are permitted provided that the following conditions are met:
Kojto 90:cb3d968589d8 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 90:cb3d968589d8 16 * this list of conditions and the following disclaimer.
Kojto 90:cb3d968589d8 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 90:cb3d968589d8 18 * this list of conditions and the following disclaimer in the documentation
Kojto 90:cb3d968589d8 19 * and/or other materials provided with the distribution.
Kojto 90:cb3d968589d8 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 90:cb3d968589d8 21 * may be used to endorse or promote products derived from this software
Kojto 90:cb3d968589d8 22 * without specific prior written permission.
Kojto 90:cb3d968589d8 23 *
Kojto 90:cb3d968589d8 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 90:cb3d968589d8 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 90:cb3d968589d8 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 90:cb3d968589d8 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 90:cb3d968589d8 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 90:cb3d968589d8 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 90:cb3d968589d8 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 90:cb3d968589d8 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 90:cb3d968589d8 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 90:cb3d968589d8 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 90:cb3d968589d8 34 *
Kojto 90:cb3d968589d8 35 ******************************************************************************
Kojto 90:cb3d968589d8 36 */
Kojto 90:cb3d968589d8 37
Kojto 90:cb3d968589d8 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 90:cb3d968589d8 39 #ifndef __STM32F3xx_HAL_SMARTCARD_EX_H
Kojto 90:cb3d968589d8 40 #define __STM32F3xx_HAL_SMARTCARD_EX_H
Kojto 90:cb3d968589d8 41
Kojto 90:cb3d968589d8 42 #ifdef __cplusplus
Kojto 90:cb3d968589d8 43 extern "C" {
Kojto 90:cb3d968589d8 44 #endif
Kojto 90:cb3d968589d8 45
Kojto 90:cb3d968589d8 46 /* Includes ------------------------------------------------------------------*/
Kojto 90:cb3d968589d8 47 #include "stm32f3xx_hal_def.h"
Kojto 90:cb3d968589d8 48
Kojto 90:cb3d968589d8 49 /** @addtogroup STM32F3xx_HAL_Driver
Kojto 90:cb3d968589d8 50 * @{
Kojto 90:cb3d968589d8 51 */
Kojto 90:cb3d968589d8 52
Kojto 90:cb3d968589d8 53 /** @addtogroup SMARTCARDEx SMARTCARD Extended HAL module driver
Kojto 90:cb3d968589d8 54 * @{
Kojto 90:cb3d968589d8 55 */
Kojto 90:cb3d968589d8 56
Kojto 90:cb3d968589d8 57 /* Exported types ------------------------------------------------------------*/
Kojto 90:cb3d968589d8 58 /* Exported constants --------------------------------------------------------*/
Kojto 90:cb3d968589d8 59 /* Exported macro ------------------------------------------------------------*/
Kojto 90:cb3d968589d8 60
Kojto 90:cb3d968589d8 61 /** @defgroup SMARTCARDEx_Exported_Macros SMARTCARD Extended Exported Macros
Kojto 90:cb3d968589d8 62 * @{
Kojto 90:cb3d968589d8 63 */
Kojto 90:cb3d968589d8 64
Kojto 90:cb3d968589d8 65 /** @brief Reports the SMARTCARD clock source.
Kojto 90:cb3d968589d8 66 * @param __HANDLE__: specifies the SMARTCARD Handle
Kojto 90:cb3d968589d8 67 * @param __CLOCKSOURCE__ : output variable
Kojto 90:cb3d968589d8 68 * @retval the SMARTCARD clocking source, written in __CLOCKSOURCE__.
Kojto 90:cb3d968589d8 69 */
Kojto 90:cb3d968589d8 70 #if defined(STM32F334x8) || defined(STM32F303x8) || defined(STM32F328xx)
Kojto 90:cb3d968589d8 71 #define __HAL_SMARTCARD_GETCLOCKSOURCE(__HANDLE__,__CLOCKSOURCE__) \
Kojto 90:cb3d968589d8 72 do { \
Kojto 90:cb3d968589d8 73 if((__HANDLE__)->Instance == USART1) \
Kojto 90:cb3d968589d8 74 { \
Kojto 90:cb3d968589d8 75 switch(__HAL_RCC_GET_USART1_SOURCE()) \
Kojto 90:cb3d968589d8 76 { \
Kojto 90:cb3d968589d8 77 case RCC_USART1CLKSOURCE_PCLK1: \
Kojto 90:cb3d968589d8 78 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_PCLK1; \
Kojto 90:cb3d968589d8 79 break; \
Kojto 90:cb3d968589d8 80 case RCC_USART1CLKSOURCE_HSI: \
Kojto 90:cb3d968589d8 81 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_HSI; \
Kojto 90:cb3d968589d8 82 break; \
Kojto 90:cb3d968589d8 83 case RCC_USART1CLKSOURCE_SYSCLK: \
Kojto 90:cb3d968589d8 84 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_SYSCLK; \
Kojto 90:cb3d968589d8 85 break; \
Kojto 90:cb3d968589d8 86 case RCC_USART1CLKSOURCE_LSE: \
Kojto 90:cb3d968589d8 87 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_LSE; \
Kojto 90:cb3d968589d8 88 break; \
Kojto 90:cb3d968589d8 89 } \
Kojto 90:cb3d968589d8 90 } \
Kojto 90:cb3d968589d8 91 else if((__HANDLE__)->Instance == USART2) \
Kojto 90:cb3d968589d8 92 { \
Kojto 90:cb3d968589d8 93 switch(__HAL_RCC_GET_USART2_SOURCE()) \
Kojto 90:cb3d968589d8 94 { \
Kojto 90:cb3d968589d8 95 case RCC_USART2CLKSOURCE_PCLK1: \
Kojto 90:cb3d968589d8 96 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_PCLK1; \
Kojto 90:cb3d968589d8 97 break; \
Kojto 90:cb3d968589d8 98 case RCC_USART2CLKSOURCE_HSI: \
Kojto 90:cb3d968589d8 99 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_HSI; \
Kojto 90:cb3d968589d8 100 break; \
Kojto 90:cb3d968589d8 101 case RCC_USART2CLKSOURCE_SYSCLK: \
Kojto 90:cb3d968589d8 102 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_SYSCLK; \
Kojto 90:cb3d968589d8 103 break; \
Kojto 90:cb3d968589d8 104 case RCC_USART2CLKSOURCE_LSE: \
Kojto 90:cb3d968589d8 105 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_LSE; \
Kojto 90:cb3d968589d8 106 break; \
Kojto 90:cb3d968589d8 107 } \
Kojto 90:cb3d968589d8 108 } \
Kojto 90:cb3d968589d8 109 else if((__HANDLE__)->Instance == USART3) \
Kojto 90:cb3d968589d8 110 { \
Kojto 90:cb3d968589d8 111 switch(__HAL_RCC_GET_USART3_SOURCE()) \
Kojto 90:cb3d968589d8 112 { \
Kojto 90:cb3d968589d8 113 case RCC_USART3CLKSOURCE_PCLK1: \
Kojto 90:cb3d968589d8 114 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_PCLK1; \
Kojto 90:cb3d968589d8 115 break; \
Kojto 90:cb3d968589d8 116 case RCC_USART3CLKSOURCE_HSI: \
Kojto 90:cb3d968589d8 117 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_HSI; \
Kojto 90:cb3d968589d8 118 break; \
Kojto 90:cb3d968589d8 119 case RCC_USART3CLKSOURCE_SYSCLK: \
Kojto 90:cb3d968589d8 120 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_SYSCLK; \
Kojto 90:cb3d968589d8 121 break; \
Kojto 90:cb3d968589d8 122 case RCC_USART3CLKSOURCE_LSE: \
Kojto 90:cb3d968589d8 123 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_LSE; \
Kojto 90:cb3d968589d8 124 break; \
Kojto 90:cb3d968589d8 125 } \
Kojto 90:cb3d968589d8 126 } \
Kojto 90:cb3d968589d8 127 } while(0)
Kojto 90:cb3d968589d8 128 #else
Kojto 90:cb3d968589d8 129 #define __HAL_SMARTCARD_GETCLOCKSOURCE(__HANDLE__,__CLOCKSOURCE__) \
Kojto 90:cb3d968589d8 130 do { \
Kojto 90:cb3d968589d8 131 if((__HANDLE__)->Instance == USART1) \
Kojto 90:cb3d968589d8 132 { \
Kojto 90:cb3d968589d8 133 switch(__HAL_RCC_GET_USART1_SOURCE()) \
Kojto 90:cb3d968589d8 134 { \
Kojto 90:cb3d968589d8 135 case RCC_USART1CLKSOURCE_PCLK2: \
Kojto 90:cb3d968589d8 136 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_PCLK2; \
Kojto 90:cb3d968589d8 137 break; \
Kojto 90:cb3d968589d8 138 case RCC_USART1CLKSOURCE_HSI: \
Kojto 90:cb3d968589d8 139 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_HSI; \
Kojto 90:cb3d968589d8 140 break; \
Kojto 90:cb3d968589d8 141 case RCC_USART1CLKSOURCE_SYSCLK: \
Kojto 90:cb3d968589d8 142 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_SYSCLK; \
Kojto 90:cb3d968589d8 143 break; \
Kojto 90:cb3d968589d8 144 case RCC_USART1CLKSOURCE_LSE: \
Kojto 90:cb3d968589d8 145 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_LSE; \
Kojto 90:cb3d968589d8 146 break; \
Kojto 90:cb3d968589d8 147 } \
Kojto 90:cb3d968589d8 148 } \
Kojto 90:cb3d968589d8 149 else if((__HANDLE__)->Instance == USART2) \
Kojto 90:cb3d968589d8 150 { \
Kojto 90:cb3d968589d8 151 switch(__HAL_RCC_GET_USART2_SOURCE()) \
Kojto 90:cb3d968589d8 152 { \
Kojto 90:cb3d968589d8 153 case RCC_USART2CLKSOURCE_PCLK1: \
Kojto 90:cb3d968589d8 154 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_PCLK1; \
Kojto 90:cb3d968589d8 155 break; \
Kojto 90:cb3d968589d8 156 case RCC_USART2CLKSOURCE_HSI: \
Kojto 90:cb3d968589d8 157 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_HSI; \
Kojto 90:cb3d968589d8 158 break; \
Kojto 90:cb3d968589d8 159 case RCC_USART2CLKSOURCE_SYSCLK: \
Kojto 90:cb3d968589d8 160 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_SYSCLK; \
Kojto 90:cb3d968589d8 161 break; \
Kojto 90:cb3d968589d8 162 case RCC_USART2CLKSOURCE_LSE: \
Kojto 90:cb3d968589d8 163 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_LSE; \
Kojto 90:cb3d968589d8 164 break; \
Kojto 90:cb3d968589d8 165 } \
Kojto 90:cb3d968589d8 166 } \
Kojto 90:cb3d968589d8 167 else if((__HANDLE__)->Instance == USART3) \
Kojto 90:cb3d968589d8 168 { \
Kojto 90:cb3d968589d8 169 switch(__HAL_RCC_GET_USART3_SOURCE()) \
Kojto 90:cb3d968589d8 170 { \
Kojto 90:cb3d968589d8 171 case RCC_USART3CLKSOURCE_PCLK1: \
Kojto 90:cb3d968589d8 172 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_PCLK1; \
Kojto 90:cb3d968589d8 173 break; \
Kojto 90:cb3d968589d8 174 case RCC_USART3CLKSOURCE_HSI: \
Kojto 90:cb3d968589d8 175 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_HSI; \
Kojto 90:cb3d968589d8 176 break; \
Kojto 90:cb3d968589d8 177 case RCC_USART3CLKSOURCE_SYSCLK: \
Kojto 90:cb3d968589d8 178 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_SYSCLK; \
Kojto 90:cb3d968589d8 179 break; \
Kojto 90:cb3d968589d8 180 case RCC_USART3CLKSOURCE_LSE: \
Kojto 90:cb3d968589d8 181 (__CLOCKSOURCE__) = SMARTCARD_CLOCKSOURCE_LSE; \
Kojto 90:cb3d968589d8 182 break; \
Kojto 90:cb3d968589d8 183 } \
Kojto 90:cb3d968589d8 184 } \
Kojto 90:cb3d968589d8 185 } while(0)
Kojto 90:cb3d968589d8 186 #endif
Kojto 90:cb3d968589d8 187
Kojto 90:cb3d968589d8 188 /**
Kojto 90:cb3d968589d8 189 * @}
Kojto 90:cb3d968589d8 190 */
Kojto 90:cb3d968589d8 191
Kojto 90:cb3d968589d8 192
Kojto 90:cb3d968589d8 193 /* Exported functions --------------------------------------------------------*/
Kojto 90:cb3d968589d8 194 /** @addtogroup SMARTCARDEx_Exported_Functions SMARTCARD Extended Exported Functions
Kojto 90:cb3d968589d8 195 * @{
Kojto 90:cb3d968589d8 196 */
Kojto 90:cb3d968589d8 197
Kojto 90:cb3d968589d8 198 /* Initialization and de-initialization functions ****************************/
Kojto 90:cb3d968589d8 199 /* IO operation functions *****************************************************/
Kojto 90:cb3d968589d8 200 /* Peripheral Control functions ***********************************************/
Kojto 90:cb3d968589d8 201 /** @addtogroup SMARTCARDEx_Exported_Functions_Group1 Extended Peripheral Control functions
Kojto 90:cb3d968589d8 202 * @{
Kojto 90:cb3d968589d8 203 */
Kojto 90:cb3d968589d8 204 void HAL_SMARTCARDEx_BlockLength_Config(SMARTCARD_HandleTypeDef *hsmartcard, uint8_t BlockLength);
Kojto 90:cb3d968589d8 205 void HAL_SMARTCARDEx_TimeOut_Config(SMARTCARD_HandleTypeDef *hsmartcard, uint32_t TimeOutValue);
Kojto 90:cb3d968589d8 206 HAL_StatusTypeDef HAL_SMARTCARDEx_EnableReceiverTimeOut(SMARTCARD_HandleTypeDef *hsmartcard);
Kojto 90:cb3d968589d8 207 HAL_StatusTypeDef HAL_SMARTCARDEx_DisableReceiverTimeOut(SMARTCARD_HandleTypeDef *hsmartcard);
Kojto 90:cb3d968589d8 208
Kojto 90:cb3d968589d8 209 /* Peripheral State and Error functions ***************************************/
Kojto 90:cb3d968589d8 210
Kojto 90:cb3d968589d8 211 /**
Kojto 90:cb3d968589d8 212 * @}
Kojto 90:cb3d968589d8 213 */
Kojto 90:cb3d968589d8 214
Kojto 90:cb3d968589d8 215 /**
Kojto 90:cb3d968589d8 216 * @}
Kojto 90:cb3d968589d8 217 */
Kojto 90:cb3d968589d8 218
Kojto 90:cb3d968589d8 219 /**
Kojto 90:cb3d968589d8 220 * @}
Kojto 90:cb3d968589d8 221 */
Kojto 90:cb3d968589d8 222
Kojto 90:cb3d968589d8 223 /**
Kojto 90:cb3d968589d8 224 * @}
Kojto 90:cb3d968589d8 225 */
Kojto 90:cb3d968589d8 226
Kojto 90:cb3d968589d8 227 #ifdef __cplusplus
Kojto 90:cb3d968589d8 228 }
Kojto 90:cb3d968589d8 229 #endif
Kojto 90:cb3d968589d8 230
Kojto 90:cb3d968589d8 231 #endif /* __STM32F3xx_HAL_SMARTCARD_EX_H */
Kojto 90:cb3d968589d8 232
Kojto 90:cb3d968589d8 233 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/