You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

339 lines
18 KiB

  1. /**
  2. ******************************************************************************
  3. * @file stm32wbxx_hal_smartcard_ex.h
  4. * @author MCD Application Team
  5. * @brief Header file of SMARTCARD HAL Extended module.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * <h2><center>&copy; Copyright (c) 2019 STMicroelectronics.
  10. * All rights reserved.</center></h2>
  11. *
  12. * This software component is licensed by ST under BSD 3-Clause license,
  13. * the "License"; You may not use this file except in compliance with the
  14. * License. You may obtain a copy of the License at:
  15. * opensource.org/licenses/BSD-3-Clause
  16. *
  17. ******************************************************************************
  18. */
  19. /* Define to prevent recursive inclusion -------------------------------------*/
  20. #ifndef STM32WBxx_HAL_SMARTCARD_EX_H
  21. #define STM32WBxx_HAL_SMARTCARD_EX_H
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /* Includes ------------------------------------------------------------------*/
  26. #include "stm32wbxx_hal_def.h"
  27. /** @addtogroup STM32WBxx_HAL_Driver
  28. * @{
  29. */
  30. /** @addtogroup SMARTCARDEx
  31. * @{
  32. */
  33. /* Exported types ------------------------------------------------------------*/
  34. /* Exported constants --------------------------------------------------------*/
  35. /** @addtogroup SMARTCARDEx_Exported_Constants SMARTCARD Extended Exported Constants
  36. * @{
  37. */
  38. /** @defgroup SMARTCARDEx_Transmission_Completion_Indication SMARTCARD Transmission Completion Indication
  39. * @{
  40. */
  41. #define SMARTCARD_TCBGT SMARTCARD_IT_TCBGT /*!< SMARTCARD transmission complete before guard time */
  42. #define SMARTCARD_TC SMARTCARD_IT_TC /*!< SMARTCARD transmission complete (flag raised when guard time has elapsed) */
  43. /**
  44. * @}
  45. */
  46. /** @defgroup SMARTCARDEx_Advanced_Features_Initialization_Type SMARTCARD advanced feature initialization type
  47. * @{
  48. */
  49. #define SMARTCARD_ADVFEATURE_NO_INIT 0x00000000U /*!< No advanced feature initialization */
  50. #define SMARTCARD_ADVFEATURE_TXINVERT_INIT 0x00000001U /*!< TX pin active level inversion */
  51. #define SMARTCARD_ADVFEATURE_RXINVERT_INIT 0x00000002U /*!< RX pin active level inversion */
  52. #define SMARTCARD_ADVFEATURE_DATAINVERT_INIT 0x00000004U /*!< Binary data inversion */
  53. #define SMARTCARD_ADVFEATURE_SWAP_INIT 0x00000008U /*!< TX/RX pins swap */
  54. #define SMARTCARD_ADVFEATURE_RXOVERRUNDISABLE_INIT 0x00000010U /*!< RX overrun disable */
  55. #define SMARTCARD_ADVFEATURE_DMADISABLEONERROR_INIT 0x00000020U /*!< DMA disable on Reception Error */
  56. #define SMARTCARD_ADVFEATURE_MSBFIRST_INIT 0x00000080U /*!< Most significant bit sent/received first */
  57. #define SMARTCARD_ADVFEATURE_TXCOMPLETION 0x00000100U /*!< TX completion indication before of after guard time */
  58. /**
  59. * @}
  60. */
  61. /** @defgroup SMARTCARDEx_FIFO_mode SMARTCARD FIFO mode
  62. * @brief SMARTCARD FIFO mode
  63. * @{
  64. */
  65. #define SMARTCARD_FIFOMODE_DISABLE 0x00000000U /*!< FIFO mode disable */
  66. #define SMARTCARD_FIFOMODE_ENABLE USART_CR1_FIFOEN /*!< FIFO mode enable */
  67. /**
  68. * @}
  69. */
  70. /** @defgroup SMARTCARDEx_TXFIFO_threshold_level SMARTCARD TXFIFO threshold level
  71. * @brief SMARTCARD TXFIFO level
  72. * @{
  73. */
  74. #define SMARTCARD_TXFIFO_THRESHOLD_1_8 0x00000000U /*!< TXFIFO reaches 1/8 of its depth */
  75. #define SMARTCARD_TXFIFO_THRESHOLD_1_4 USART_CR3_TXFTCFG_0 /*!< TXFIFO reaches 1/4 of its depth */
  76. #define SMARTCARD_TXFIFO_THRESHOLD_1_2 USART_CR3_TXFTCFG_1 /*!< TXFIFO reaches 1/2 of its depth */
  77. #define SMARTCARD_TXFIFO_THRESHOLD_3_4 (USART_CR3_TXFTCFG_0|USART_CR3_TXFTCFG_1) /*!< TXFIFO reaches 3/4 of its depth */
  78. #define SMARTCARD_TXFIFO_THRESHOLD_7_8 USART_CR3_TXFTCFG_2 /*!< TXFIFO reaches 7/8 of its depth */
  79. #define SMARTCARD_TXFIFO_THRESHOLD_8_8 (USART_CR3_TXFTCFG_2|USART_CR3_TXFTCFG_0) /*!< TXFIFO becomes empty */
  80. /**
  81. * @}
  82. */
  83. /** @defgroup SMARTCARDEx_RXFIFO_threshold_level SMARTCARD RXFIFO threshold level
  84. * @brief SMARTCARD RXFIFO level
  85. * @{
  86. */
  87. #define SMARTCARD_RXFIFO_THRESHOLD_1_8 0x00000000U /*!< RXFIFO FIFO reaches 1/8 of its depth */
  88. #define SMARTCARD_RXFIFO_THRESHOLD_1_4 USART_CR3_RXFTCFG_0 /*!< RXFIFO FIFO reaches 1/4 of its depth */
  89. #define SMARTCARD_RXFIFO_THRESHOLD_1_2 USART_CR3_RXFTCFG_1 /*!< RXFIFO FIFO reaches 1/2 of its depth */
  90. #define SMARTCARD_RXFIFO_THRESHOLD_3_4 (USART_CR3_RXFTCFG_0|USART_CR3_RXFTCFG_1) /*!< RXFIFO FIFO reaches 3/4 of its depth */
  91. #define SMARTCARD_RXFIFO_THRESHOLD_7_8 USART_CR3_RXFTCFG_2 /*!< RXFIFO FIFO reaches 7/8 of its depth */
  92. #define SMARTCARD_RXFIFO_THRESHOLD_8_8 (USART_CR3_RXFTCFG_2|USART_CR3_RXFTCFG_0) /*!< RXFIFO FIFO becomes full */
  93. /**
  94. * @}
  95. */
  96. /** @defgroup SMARTCARDEx_Flags SMARTCARD Flags
  97. * Elements values convention: 0xXXXX
  98. * - 0xXXXX : Flag mask in the ISR register
  99. * @{
  100. */
  101. #define SMARTCARD_FLAG_TCBGT USART_ISR_TCBGT /*!< SMARTCARD transmission complete before guard time completion */
  102. #define SMARTCARD_FLAG_REACK USART_ISR_REACK /*!< SMARTCARD receive enable acknowledge flag */
  103. #define SMARTCARD_FLAG_TEACK USART_ISR_TEACK /*!< SMARTCARD transmit enable acknowledge flag */
  104. #define SMARTCARD_FLAG_BUSY USART_ISR_BUSY /*!< SMARTCARD busy flag */
  105. #define SMARTCARD_FLAG_EOBF USART_ISR_EOBF /*!< SMARTCARD end of block flag */
  106. #define SMARTCARD_FLAG_RTOF USART_ISR_RTOF /*!< SMARTCARD receiver timeout flag */
  107. #define SMARTCARD_FLAG_TXE USART_ISR_TXE_TXFNF /*!< SMARTCARD transmit data register empty */
  108. #define SMARTCARD_FLAG_TXFNF USART_ISR_TXE_TXFNF /*!< SMARTCARD TXFIFO not full */
  109. #define SMARTCARD_FLAG_TC USART_ISR_TC /*!< SMARTCARD transmission complete */
  110. #define SMARTCARD_FLAG_RXNE USART_ISR_RXNE_RXFNE /*!< SMARTCARD read data register not empty */
  111. #define SMARTCARD_FLAG_RXFNE USART_ISR_RXNE_RXFNE /*!< SMARTCARD RXFIFO not empty */
  112. #define SMARTCARD_FLAG_IDLE USART_ISR_IDLE /*!< SMARTCARD idle line detection */
  113. #define SMARTCARD_FLAG_ORE USART_ISR_ORE /*!< SMARTCARD overrun error */
  114. #define SMARTCARD_FLAG_NE USART_ISR_NE /*!< SMARTCARD noise error */
  115. #define SMARTCARD_FLAG_FE USART_ISR_FE /*!< SMARTCARD frame error */
  116. #define SMARTCARD_FLAG_PE USART_ISR_PE /*!< SMARTCARD parity error */
  117. #define SMARTCARD_FLAG_TXFE USART_ISR_TXFE /*!< SMARTCARD TXFIFO Empty flag */
  118. #define SMARTCARD_FLAG_RXFF USART_ISR_RXFF /*!< SMARTCARD RXFIFO Full flag */
  119. #define SMARTCARD_FLAG_RXFT USART_ISR_RXFT /*!< SMARTCARD RXFIFO threshold flag */
  120. #define SMARTCARD_FLAG_TXFT USART_ISR_TXFT /*!< SMARTCARD TXFIFO threshold flag */
  121. /**
  122. * @}
  123. */
  124. /** @defgroup SMARTCARDEx_Interrupt_definition SMARTCARD Interrupts Definition
  125. * Elements values convention: 000ZZZZZ0XXYYYYYb
  126. * - YYYYY : Interrupt source position in the XX register (5 bits)
  127. * - XX : Interrupt source register (2 bits)
  128. * - 01: CR1 register
  129. * - 10: CR2 register
  130. * - 11: CR3 register
  131. * - ZZZZZ : Flag position in the ISR register(5 bits)
  132. * @{
  133. */
  134. #define SMARTCARD_IT_PE 0x0028U /*!< SMARTCARD parity error interruption */
  135. #define SMARTCARD_IT_TXE 0x0727U /*!< SMARTCARD transmit data register empty interruption */
  136. #define SMARTCARD_IT_TXFNF 0x0727U /*!< SMARTCARD TX FIFO not full interruption */
  137. #define SMARTCARD_IT_TC 0x0626U /*!< SMARTCARD transmission complete interruption */
  138. #define SMARTCARD_IT_RXNE 0x0525U /*!< SMARTCARD read data register not empty interruption */
  139. #define SMARTCARD_IT_RXFNE 0x0525U /*!< SMARTCARD RXFIFO not empty interruption */
  140. #define SMARTCARD_IT_IDLE 0x0424U /*!< SMARTCARD idle line detection interruption */
  141. #define SMARTCARD_IT_ERR 0x0060U /*!< SMARTCARD error interruption */
  142. #define SMARTCARD_IT_ORE 0x0300U /*!< SMARTCARD overrun error interruption */
  143. #define SMARTCARD_IT_NE 0x0200U /*!< SMARTCARD noise error interruption */
  144. #define SMARTCARD_IT_FE 0x0100U /*!< SMARTCARD frame error interruption */
  145. #define SMARTCARD_IT_EOB 0x0C3BU /*!< SMARTCARD end of block interruption */
  146. #define SMARTCARD_IT_RTO 0x0B3AU /*!< SMARTCARD receiver timeout interruption */
  147. #define SMARTCARD_IT_TCBGT 0x1978U /*!< SMARTCARD transmission complete before guard time completion interruption */
  148. #define SMARTCARD_IT_RXFF 0x183FU /*!< SMARTCARD RXFIFO full interruption */
  149. #define SMARTCARD_IT_TXFE 0x173EU /*!< SMARTCARD TXFIFO empty interruption */
  150. #define SMARTCARD_IT_RXFT 0x1A7CU /*!< SMARTCARD RXFIFO threshold reached interruption */
  151. #define SMARTCARD_IT_TXFT 0x1B77U /*!< SMARTCARD TXFIFO threshold reached interruption */
  152. /**
  153. * @}
  154. */
  155. /** @defgroup SMARTCARDEx_IT_CLEAR_Flags SMARTCARD Interruption Clear Flags
  156. * @{
  157. */
  158. #define SMARTCARD_CLEAR_PEF USART_ICR_PECF /*!< SMARTCARD parity error clear flag */
  159. #define SMARTCARD_CLEAR_FEF USART_ICR_FECF /*!< SMARTCARD framing error clear flag */
  160. #define SMARTCARD_CLEAR_NEF USART_ICR_NECF /*!< SMARTCARD noise error detected clear flag */
  161. #define SMARTCARD_CLEAR_OREF USART_ICR_ORECF /*!< SMARTCARD overrun error clear flag */
  162. #define SMARTCARD_CLEAR_IDLEF USART_ICR_IDLECF /*!< SMARTCARD idle line detected clear flag */
  163. #define SMARTCARD_CLEAR_TXFECF USART_ICR_TXFECF /*!< TXFIFO empty Clear Flag */
  164. #define SMARTCARD_CLEAR_TCF USART_ICR_TCCF /*!< SMARTCARD transmission complete clear flag */
  165. #define SMARTCARD_CLEAR_TCBGTF USART_ICR_TCBGTCF /*!< SMARTCARD transmission complete before guard time completion clear flag */
  166. #define SMARTCARD_CLEAR_RTOF USART_ICR_RTOCF /*!< SMARTCARD receiver time out clear flag */
  167. #define SMARTCARD_CLEAR_EOBF USART_ICR_EOBCF /*!< SMARTCARD end of block clear flag */
  168. /**
  169. * @}
  170. */
  171. /**
  172. * @}
  173. */
  174. /* Exported macros -----------------------------------------------------------*/
  175. /* Private macros ------------------------------------------------------------*/
  176. /** @defgroup SMARTCARDEx_Private_Macros SMARTCARD Extended Private Macros
  177. * @{
  178. */
  179. /** @brief Set the Transmission Completion flag
  180. * @param __HANDLE__ specifies the SMARTCARD Handle.
  181. * @note If TCBGT (Transmission Complete Before Guard Time) flag is not available or if
  182. * AdvancedInit.TxCompletionIndication is not already filled, the latter is forced
  183. * to SMARTCARD_TC (transmission completion indication when guard time has elapsed).
  184. * @retval None
  185. */
  186. #define SMARTCARD_TRANSMISSION_COMPLETION_SETTING(__HANDLE__) \
  187. do { \
  188. if (HAL_IS_BIT_CLR((__HANDLE__)->AdvancedInit.AdvFeatureInit, SMARTCARD_ADVFEATURE_TXCOMPLETION)) \
  189. { \
  190. (__HANDLE__)->AdvancedInit.TxCompletionIndication = SMARTCARD_TC; \
  191. } \
  192. else \
  193. { \
  194. assert_param(IS_SMARTCARD_TRANSMISSION_COMPLETION((__HANDLE__)->AdvancedInit.TxCompletionIndication)); \
  195. } \
  196. } while(0U)
  197. /** @brief Return the transmission completion flag.
  198. * @param __HANDLE__ specifies the SMARTCARD Handle.
  199. * @note Based on AdvancedInit.TxCompletionIndication setting, return TC or TCBGT flag.
  200. * When TCBGT flag (Transmission Complete Before Guard Time) is not available, TC flag is
  201. * reported.
  202. * @retval Transmission completion flag
  203. */
  204. #define SMARTCARD_TRANSMISSION_COMPLETION_FLAG(__HANDLE__) \
  205. (((__HANDLE__)->AdvancedInit.TxCompletionIndication == SMARTCARD_TC) ? (SMARTCARD_FLAG_TC) : (SMARTCARD_FLAG_TCBGT))
  206. /** @brief Ensure that SMARTCARD frame transmission completion used flag is valid.
  207. * @param __TXCOMPLETE__ SMARTCARD frame transmission completion used flag.
  208. * @retval SET (__TXCOMPLETE__ is valid) or RESET (__TXCOMPLETE__ is invalid)
  209. */
  210. #define IS_SMARTCARD_TRANSMISSION_COMPLETION(__TXCOMPLETE__) (((__TXCOMPLETE__) == SMARTCARD_TCBGT) || \
  211. ((__TXCOMPLETE__) == SMARTCARD_TC))
  212. /** @brief Ensure that SMARTCARD FIFO mode is valid.
  213. * @param __STATE__ SMARTCARD FIFO mode.
  214. * @retval SET (__STATE__ is valid) or RESET (__STATE__ is invalid)
  215. */
  216. #define IS_SMARTCARD_FIFOMODE_STATE(__STATE__) (((__STATE__) == SMARTCARD_FIFOMODE_DISABLE ) || \
  217. ((__STATE__) == SMARTCARD_FIFOMODE_ENABLE))
  218. /** @brief Ensure that SMARTCARD TXFIFO threshold level is valid.
  219. * @param __THRESHOLD__ SMARTCARD TXFIFO threshold level.
  220. * @retval SET (__THRESHOLD__ is valid) or RESET (__THRESHOLD__ is invalid)
  221. */
  222. #define IS_SMARTCARD_TXFIFO_THRESHOLD(__THRESHOLD__) (((__THRESHOLD__) == SMARTCARD_TXFIFO_THRESHOLD_1_8) || \
  223. ((__THRESHOLD__) == SMARTCARD_TXFIFO_THRESHOLD_1_4) || \
  224. ((__THRESHOLD__) == SMARTCARD_TXFIFO_THRESHOLD_1_2) || \
  225. ((__THRESHOLD__) == SMARTCARD_TXFIFO_THRESHOLD_3_4) || \
  226. ((__THRESHOLD__) == SMARTCARD_TXFIFO_THRESHOLD_7_8) || \
  227. ((__THRESHOLD__) == SMARTCARD_TXFIFO_THRESHOLD_8_8))
  228. /** @brief Ensure that SMARTCARD RXFIFO threshold level is valid.
  229. * @param __THRESHOLD__ SMARTCARD RXFIFO threshold level.
  230. * @retval SET (__THRESHOLD__ is valid) or RESET (__THRESHOLD__ is invalid)
  231. */
  232. #define IS_SMARTCARD_RXFIFO_THRESHOLD(__THRESHOLD__) (((__THRESHOLD__) == SMARTCARD_RXFIFO_THRESHOLD_1_8) || \
  233. ((__THRESHOLD__) == SMARTCARD_RXFIFO_THRESHOLD_1_4) || \
  234. ((__THRESHOLD__) == SMARTCARD_RXFIFO_THRESHOLD_1_2) || \
  235. ((__THRESHOLD__) == SMARTCARD_RXFIFO_THRESHOLD_3_4) || \
  236. ((__THRESHOLD__) == SMARTCARD_RXFIFO_THRESHOLD_7_8) || \
  237. ((__THRESHOLD__) == SMARTCARD_RXFIFO_THRESHOLD_8_8))
  238. /**
  239. * @}
  240. */
  241. /* Exported functions --------------------------------------------------------*/
  242. /** @addtogroup SMARTCARDEx_Exported_Functions
  243. * @{
  244. */
  245. /* Initialization and de-initialization functions ****************************/
  246. /* IO operation methods *******************************************************/
  247. /** @addtogroup SMARTCARDEx_Exported_Functions_Group1
  248. * @{
  249. */
  250. /* Peripheral Control functions ***********************************************/
  251. void HAL_SMARTCARDEx_BlockLength_Config(SMARTCARD_HandleTypeDef *hsmartcard, uint8_t BlockLength);
  252. void HAL_SMARTCARDEx_TimeOut_Config(SMARTCARD_HandleTypeDef *hsmartcard, uint32_t TimeOutValue);
  253. HAL_StatusTypeDef HAL_SMARTCARDEx_EnableReceiverTimeOut(SMARTCARD_HandleTypeDef *hsmartcard);
  254. HAL_StatusTypeDef HAL_SMARTCARDEx_DisableReceiverTimeOut(SMARTCARD_HandleTypeDef *hsmartcard);
  255. /**
  256. * @}
  257. */
  258. /* Exported functions --------------------------------------------------------*/
  259. /** @addtogroup SMARTCARDEx_Exported_Functions_Group2
  260. * @{
  261. */
  262. /* IO operation functions *****************************************************/
  263. void HAL_SMARTCARDEx_RxFifoFullCallback(SMARTCARD_HandleTypeDef *hsmartcard);
  264. void HAL_SMARTCARDEx_TxFifoEmptyCallback(SMARTCARD_HandleTypeDef *hsmartcard);
  265. /**
  266. * @}
  267. */
  268. /** @addtogroup SMARTCARDEx_Exported_Functions_Group3
  269. * @{
  270. */
  271. /* Peripheral Control functions ***********************************************/
  272. HAL_StatusTypeDef HAL_SMARTCARDEx_EnableFifoMode(SMARTCARD_HandleTypeDef *hsmartcard);
  273. HAL_StatusTypeDef HAL_SMARTCARDEx_DisableFifoMode(SMARTCARD_HandleTypeDef *hsmartcard);
  274. HAL_StatusTypeDef HAL_SMARTCARDEx_SetTxFifoThreshold(SMARTCARD_HandleTypeDef *hsmartcard, uint32_t Threshold);
  275. HAL_StatusTypeDef HAL_SMARTCARDEx_SetRxFifoThreshold(SMARTCARD_HandleTypeDef *hsmartcard, uint32_t Threshold);
  276. /**
  277. * @}
  278. */
  279. /**
  280. * @}
  281. */
  282. /* Private functions ---------------------------------------------------------*/
  283. /**
  284. * @}
  285. */
  286. /**
  287. * @}
  288. */
  289. #ifdef __cplusplus
  290. }
  291. #endif
  292. #endif /* STM32WBxx_HAL_SMARTCARD_EX_H */
  293. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/