version_2.0

Dependents:   cc3000_ping_demo_try_2

Fork of mbed by mbed official

Committer:
bogdanm
Date:
Wed Jun 11 15:14:05 2014 +0100
Revision:
85:024bf7f99721
Release 85 of the mbed library

Main changes:

- K64F Ethernet fixes
- Updated tests
- Fixes for various mbed targets
- Code cleanup: fixed warnings, more consistent code style
- GCC support for K64F

There is a known issue with the I2C interface on some ST targets. If you
find the I2C interface problematic on your ST board, please log a bug
against this on mbed.org.

Who changed what in which revision?

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