mbed library sources

Fork of mbed-src by mbed official

Committer:
mbed_official
Date:
Mon Nov 03 10:30:07 2014 +0000
Revision:
381:5460fc57b6e4
Synchronized with git revision 02478cd1f27fc7b9643486472635eb515b2bca81

Full URL: https://github.com/mbedmicro/mbed/commit/02478cd1f27fc7b9643486472635eb515b2bca81/

Target: LPC1549 - Fix serial interrupt issues (issue report #616)

Who changed what in which revision?

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