mbed official / mbed

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

Committer:
Kojto
Date:
Tue Feb 16 14:28:01 2016 +0000
Revision:
114:252557024ec3
Parent:
107:4f6c30876dfa
Child:
116:c0f6e94411f5
Release 114 of the mbed library

Changes:
- Atmel SAM - warnings fixes
- B96B F446VE - hw control flow addition
- Remove of GCC CW which was not active
- Remove GCC CS, not released anymore - deprecated

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 107:4f6c30876dfa 1 /**
Kojto 107:4f6c30876dfa 2 ******************************************************************************
Kojto 107:4f6c30876dfa 3 * @file stm32f7xx_hal_usart.h
Kojto 107:4f6c30876dfa 4 * @author MCD Application Team
Kojto 107:4f6c30876dfa 5 * @version V1.0.1
Kojto 107:4f6c30876dfa 6 * @date 25-June-2015
Kojto 107:4f6c30876dfa 7 * @brief Header file of USART HAL module.
Kojto 107:4f6c30876dfa 8 ******************************************************************************
Kojto 107:4f6c30876dfa 9 * @attention
Kojto 107:4f6c30876dfa 10 *
Kojto 107:4f6c30876dfa 11 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
Kojto 107:4f6c30876dfa 12 *
Kojto 107:4f6c30876dfa 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 107:4f6c30876dfa 14 * are permitted provided that the following conditions are met:
Kojto 107:4f6c30876dfa 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 107:4f6c30876dfa 16 * this list of conditions and the following disclaimer.
Kojto 107:4f6c30876dfa 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 107:4f6c30876dfa 18 * this list of conditions and the following disclaimer in the documentation
Kojto 107:4f6c30876dfa 19 * and/or other materials provided with the distribution.
Kojto 107:4f6c30876dfa 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 107:4f6c30876dfa 21 * may be used to endorse or promote products derived from this software
Kojto 107:4f6c30876dfa 22 * without specific prior written permission.
Kojto 107:4f6c30876dfa 23 *
Kojto 107:4f6c30876dfa 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 107:4f6c30876dfa 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 107:4f6c30876dfa 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 107:4f6c30876dfa 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 107:4f6c30876dfa 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 107:4f6c30876dfa 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 107:4f6c30876dfa 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 107:4f6c30876dfa 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 107:4f6c30876dfa 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 107:4f6c30876dfa 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 107:4f6c30876dfa 34 *
Kojto 107:4f6c30876dfa 35 ******************************************************************************
Kojto 107:4f6c30876dfa 36 */
Kojto 107:4f6c30876dfa 37
Kojto 107:4f6c30876dfa 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 107:4f6c30876dfa 39 #ifndef __STM32F7xx_HAL_USART_H
Kojto 107:4f6c30876dfa 40 #define __STM32F7xx_HAL_USART_H
Kojto 107:4f6c30876dfa 41
Kojto 107:4f6c30876dfa 42 #ifdef __cplusplus
Kojto 107:4f6c30876dfa 43 extern "C" {
Kojto 107:4f6c30876dfa 44 #endif
Kojto 107:4f6c30876dfa 45
Kojto 107:4f6c30876dfa 46 /* Includes ------------------------------------------------------------------*/
Kojto 107:4f6c30876dfa 47 #include "stm32f7xx_hal_def.h"
Kojto 107:4f6c30876dfa 48
Kojto 107:4f6c30876dfa 49 /** @addtogroup STM32F7xx_HAL_Driver
Kojto 107:4f6c30876dfa 50 * @{
Kojto 107:4f6c30876dfa 51 */
Kojto 107:4f6c30876dfa 52
Kojto 107:4f6c30876dfa 53 /** @addtogroup USART
Kojto 107:4f6c30876dfa 54 * @{
Kojto 107:4f6c30876dfa 55 */
Kojto 107:4f6c30876dfa 56
Kojto 107:4f6c30876dfa 57 /* Exported types ------------------------------------------------------------*/
Kojto 107:4f6c30876dfa 58 /** @defgroup USART_Exported_Types USART Exported Types
Kojto 107:4f6c30876dfa 59 * @{
Kojto 107:4f6c30876dfa 60 */
Kojto 107:4f6c30876dfa 61
Kojto 107:4f6c30876dfa 62 /**
Kojto 107:4f6c30876dfa 63 * @brief USART Init Structure definition
Kojto 107:4f6c30876dfa 64 */
Kojto 107:4f6c30876dfa 65 typedef struct
Kojto 107:4f6c30876dfa 66 {
Kojto 107:4f6c30876dfa 67 uint32_t BaudRate; /*!< This member configures the Usart communication baud rate.
Kojto 107:4f6c30876dfa 68 The baud rate is computed using the following formula:
Kojto 107:4f6c30876dfa 69 Baud Rate Register = ((PCLKx) / ((huart->Init.BaudRate))) */
Kojto 107:4f6c30876dfa 70
Kojto 107:4f6c30876dfa 71 uint32_t WordLength; /*!< Specifies the number of data bits transmitted or received in a frame.
Kojto 107:4f6c30876dfa 72 This parameter can be a value of @ref USARTEx_Word_Length */
Kojto 107:4f6c30876dfa 73
Kojto 107:4f6c30876dfa 74 uint32_t StopBits; /*!< Specifies the number of stop bits transmitted.
Kojto 107:4f6c30876dfa 75 This parameter can be a value of @ref USART_Stop_Bits */
Kojto 107:4f6c30876dfa 76
Kojto 107:4f6c30876dfa 77 uint32_t Parity; /*!< Specifies the parity mode.
Kojto 107:4f6c30876dfa 78 This parameter can be a value of @ref USART_Parity
Kojto 107:4f6c30876dfa 79 @note When parity is enabled, the computed parity is inserted
Kojto 107:4f6c30876dfa 80 at the MSB position of the transmitted data (9th bit when
Kojto 107:4f6c30876dfa 81 the word length is set to 9 data bits; 8th bit when the
Kojto 107:4f6c30876dfa 82 word length is set to 8 data bits). */
Kojto 107:4f6c30876dfa 83
Kojto 107:4f6c30876dfa 84 uint32_t Mode; /*!< Specifies whether the Receive or Transmit mode is enabled or disabled.
Kojto 107:4f6c30876dfa 85 This parameter can be a value of @ref USART_Mode */
Kojto 107:4f6c30876dfa 86
Kojto 107:4f6c30876dfa 87 uint32_t OverSampling; /*!< Specifies whether the Over sampling 8 is enabled or disabled, to achieve higher speed (up to fPCLK/8).
Kojto 107:4f6c30876dfa 88 This parameter can be a value of @ref USART_Over_Sampling */
Kojto 107:4f6c30876dfa 89
Kojto 107:4f6c30876dfa 90 uint32_t CLKPolarity; /*!< Specifies the steady state of the serial clock.
Kojto 107:4f6c30876dfa 91 This parameter can be a value of @ref USART_Clock_Polarity */
Kojto 107:4f6c30876dfa 92
Kojto 107:4f6c30876dfa 93 uint32_t CLKPhase; /*!< Specifies the clock transition on which the bit capture is made.
Kojto 107:4f6c30876dfa 94 This parameter can be a value of @ref USART_Clock_Phase */
Kojto 107:4f6c30876dfa 95
Kojto 107:4f6c30876dfa 96 uint32_t CLKLastBit; /*!< Specifies whether the clock pulse corresponding to the last transmitted
Kojto 107:4f6c30876dfa 97 data bit (MSB) has to be output on the SCLK pin in synchronous mode.
Kojto 107:4f6c30876dfa 98 This parameter can be a value of @ref USART_Last_Bit */
Kojto 107:4f6c30876dfa 99 }USART_InitTypeDef;
Kojto 107:4f6c30876dfa 100
Kojto 107:4f6c30876dfa 101 /**
Kojto 107:4f6c30876dfa 102 * @brief HAL USART State structures definition
Kojto 107:4f6c30876dfa 103 */
Kojto 107:4f6c30876dfa 104 typedef enum
Kojto 107:4f6c30876dfa 105 {
Kojto 107:4f6c30876dfa 106 HAL_USART_STATE_RESET = 0x00, /*!< Peripheral is not initialized */
Kojto 107:4f6c30876dfa 107 HAL_USART_STATE_READY = 0x01, /*!< Peripheral Initialized and ready for use */
Kojto 107:4f6c30876dfa 108 HAL_USART_STATE_BUSY = 0x02, /*!< an internal process is ongoing */
Kojto 107:4f6c30876dfa 109 HAL_USART_STATE_BUSY_TX = 0x12, /*!< Data Transmission process is ongoing */
Kojto 107:4f6c30876dfa 110 HAL_USART_STATE_BUSY_RX = 0x22, /*!< Data Reception process is ongoing */
Kojto 107:4f6c30876dfa 111 HAL_USART_STATE_BUSY_TX_RX = 0x32, /*!< Data Transmission Reception process is ongoing */
Kojto 107:4f6c30876dfa 112 HAL_USART_STATE_TIMEOUT = 0x03, /*!< Timeout state */
Kojto 107:4f6c30876dfa 113 HAL_USART_STATE_ERROR = 0x04 /*!< Error */
Kojto 107:4f6c30876dfa 114 }HAL_USART_StateTypeDef;
Kojto 107:4f6c30876dfa 115
Kojto 107:4f6c30876dfa 116
Kojto 107:4f6c30876dfa 117 /**
Kojto 107:4f6c30876dfa 118 * @brief USART clock sources definitions
Kojto 107:4f6c30876dfa 119 */
Kojto 107:4f6c30876dfa 120 typedef enum
Kojto 107:4f6c30876dfa 121 {
Kojto 107:4f6c30876dfa 122 USART_CLOCKSOURCE_PCLK1 = 0x00, /*!< PCLK1 clock source */
Kojto 107:4f6c30876dfa 123 USART_CLOCKSOURCE_PCLK2 = 0x01, /*!< PCLK2 clock source */
Kojto 107:4f6c30876dfa 124 USART_CLOCKSOURCE_HSI = 0x02, /*!< HSI clock source */
Kojto 107:4f6c30876dfa 125 USART_CLOCKSOURCE_SYSCLK = 0x04, /*!< SYSCLK clock source */
Kojto 107:4f6c30876dfa 126 USART_CLOCKSOURCE_LSE = 0x08, /*!< LSE clock source */
Kojto 107:4f6c30876dfa 127 USART_CLOCKSOURCE_UNDEFINED = 0x10 /*!< Undefined clock source */
Kojto 107:4f6c30876dfa 128 }USART_ClockSourceTypeDef;
Kojto 107:4f6c30876dfa 129
Kojto 107:4f6c30876dfa 130
Kojto 107:4f6c30876dfa 131 /**
Kojto 107:4f6c30876dfa 132 * @brief USART handle Structure definition
Kojto 107:4f6c30876dfa 133 */
Kojto 107:4f6c30876dfa 134 typedef struct
Kojto 107:4f6c30876dfa 135 {
Kojto 107:4f6c30876dfa 136 USART_TypeDef *Instance; /*!< USART registers base address */
Kojto 107:4f6c30876dfa 137
Kojto 107:4f6c30876dfa 138 USART_InitTypeDef Init; /*!< USART communication parameters */
Kojto 107:4f6c30876dfa 139
Kojto 107:4f6c30876dfa 140 uint8_t *pTxBuffPtr; /*!< Pointer to USART Tx transfer Buffer */
Kojto 107:4f6c30876dfa 141
Kojto 107:4f6c30876dfa 142 uint16_t TxXferSize; /*!< USART Tx Transfer size */
Kojto 107:4f6c30876dfa 143
Kojto 107:4f6c30876dfa 144 uint16_t TxXferCount; /*!< USART Tx Transfer Counter */
Kojto 107:4f6c30876dfa 145
Kojto 107:4f6c30876dfa 146 uint8_t *pRxBuffPtr; /*!< Pointer to USART Rx transfer Buffer */
Kojto 107:4f6c30876dfa 147
Kojto 107:4f6c30876dfa 148 uint16_t RxXferSize; /*!< USART Rx Transfer size */
Kojto 107:4f6c30876dfa 149
Kojto 107:4f6c30876dfa 150 uint16_t RxXferCount; /*!< USART Rx Transfer Counter */
Kojto 107:4f6c30876dfa 151
Kojto 107:4f6c30876dfa 152 uint16_t Mask; /*!< USART Rx RDR register mask */
Kojto 107:4f6c30876dfa 153
Kojto 107:4f6c30876dfa 154 DMA_HandleTypeDef *hdmatx; /*!< USART Tx DMA Handle parameters */
Kojto 107:4f6c30876dfa 155
Kojto 107:4f6c30876dfa 156 DMA_HandleTypeDef *hdmarx; /*!< USART Rx DMA Handle parameters */
Kojto 107:4f6c30876dfa 157
Kojto 107:4f6c30876dfa 158 HAL_LockTypeDef Lock; /*!< Locking object */
Kojto 107:4f6c30876dfa 159
Kojto 107:4f6c30876dfa 160 HAL_USART_StateTypeDef State; /*!< USART communication state */
Kojto 107:4f6c30876dfa 161
Kojto 107:4f6c30876dfa 162 __IO uint32_t ErrorCode; /*!< USART Error code */
Kojto 107:4f6c30876dfa 163
Kojto 107:4f6c30876dfa 164 }USART_HandleTypeDef;
Kojto 107:4f6c30876dfa 165 /**
Kojto 107:4f6c30876dfa 166 * @}
Kojto 107:4f6c30876dfa 167 */
Kojto 107:4f6c30876dfa 168
Kojto 107:4f6c30876dfa 169 /* Exported constants --------------------------------------------------------*/
Kojto 107:4f6c30876dfa 170 /** @defgroup USART_Exported_Constants USART Exported Constants
Kojto 107:4f6c30876dfa 171 * @{
Kojto 107:4f6c30876dfa 172 */
Kojto 107:4f6c30876dfa 173
Kojto 107:4f6c30876dfa 174 /** @defgroup USART_Error_Code USART Error Code
Kojto 107:4f6c30876dfa 175 * @brief USART Error Code
Kojto 107:4f6c30876dfa 176 * @{
Kojto 107:4f6c30876dfa 177 */
Kojto 107:4f6c30876dfa 178 #define HAL_USART_ERROR_NONE ((uint32_t)0x00000000) /*!< No error */
Kojto 107:4f6c30876dfa 179 #define HAL_USART_ERROR_PE ((uint32_t)0x00000001) /*!< Parity error */
Kojto 107:4f6c30876dfa 180 #define HAL_USART_ERROR_NE ((uint32_t)0x00000002) /*!< Noise error */
Kojto 107:4f6c30876dfa 181 #define HAL_USART_ERROR_FE ((uint32_t)0x00000004) /*!< Frame error */
Kojto 107:4f6c30876dfa 182 #define HAL_USART_ERROR_ORE ((uint32_t)0x00000008) /*!< Overrun error */
Kojto 107:4f6c30876dfa 183 #define HAL_USART_ERROR_DMA ((uint32_t)0x00000010) /*!< DMA transfer error */
Kojto 107:4f6c30876dfa 184 /**
Kojto 107:4f6c30876dfa 185 * @}
Kojto 107:4f6c30876dfa 186 */
Kojto 107:4f6c30876dfa 187
Kojto 107:4f6c30876dfa 188 /** @defgroup USART_Stop_Bits USART Number of Stop Bits
Kojto 107:4f6c30876dfa 189 * @{
Kojto 107:4f6c30876dfa 190 */
Kojto 107:4f6c30876dfa 191 #define USART_STOPBITS_1 ((uint32_t)0x0000)
Kojto 107:4f6c30876dfa 192 #define USART_STOPBITS_2 ((uint32_t)USART_CR2_STOP_1)
Kojto 107:4f6c30876dfa 193 #define USART_STOPBITS_1_5 ((uint32_t)(USART_CR2_STOP_0 | USART_CR2_STOP_1))
Kojto 107:4f6c30876dfa 194 /**
Kojto 107:4f6c30876dfa 195 * @}
Kojto 107:4f6c30876dfa 196 */
Kojto 107:4f6c30876dfa 197
Kojto 107:4f6c30876dfa 198 /** @defgroup USART_Parity USART Parity
Kojto 107:4f6c30876dfa 199 * @{
Kojto 107:4f6c30876dfa 200 */
Kojto 107:4f6c30876dfa 201 #define USART_PARITY_NONE ((uint32_t)0x0000)
Kojto 107:4f6c30876dfa 202 #define USART_PARITY_EVEN ((uint32_t)USART_CR1_PCE)
Kojto 107:4f6c30876dfa 203 #define USART_PARITY_ODD ((uint32_t)(USART_CR1_PCE | USART_CR1_PS))
Kojto 107:4f6c30876dfa 204 /**
Kojto 107:4f6c30876dfa 205 * @}
Kojto 107:4f6c30876dfa 206 */
Kojto 107:4f6c30876dfa 207
Kojto 107:4f6c30876dfa 208 /** @defgroup USART_Mode USART Mode
Kojto 107:4f6c30876dfa 209 * @{
Kojto 107:4f6c30876dfa 210 */
Kojto 107:4f6c30876dfa 211 #define USART_MODE_RX ((uint32_t)USART_CR1_RE)
Kojto 107:4f6c30876dfa 212 #define USART_MODE_TX ((uint32_t)USART_CR1_TE)
Kojto 107:4f6c30876dfa 213 #define USART_MODE_TX_RX ((uint32_t)(USART_CR1_TE |USART_CR1_RE))
Kojto 107:4f6c30876dfa 214 /**
Kojto 107:4f6c30876dfa 215 * @}
Kojto 107:4f6c30876dfa 216 */
Kojto 107:4f6c30876dfa 217
Kojto 107:4f6c30876dfa 218 /** @defgroup USART_Over_Sampling USART Over Sampling
Kojto 107:4f6c30876dfa 219 * @{
Kojto 107:4f6c30876dfa 220 */
Kojto 107:4f6c30876dfa 221 #define USART_OVERSAMPLING_16 ((uint32_t)0x0000)
Kojto 107:4f6c30876dfa 222 #define USART_OVERSAMPLING_8 ((uint32_t)USART_CR1_OVER8)
Kojto 107:4f6c30876dfa 223 /**
Kojto 107:4f6c30876dfa 224 * @}
Kojto 107:4f6c30876dfa 225 */
Kojto 107:4f6c30876dfa 226 /** @defgroup USART_Clock USART Clock
Kojto 107:4f6c30876dfa 227 * @{
Kojto 107:4f6c30876dfa 228 */
Kojto 107:4f6c30876dfa 229 #define USART_CLOCK_DISABLE ((uint32_t)0x0000)
Kojto 107:4f6c30876dfa 230 #define USART_CLOCK_ENABLE ((uint32_t)USART_CR2_CLKEN)
Kojto 107:4f6c30876dfa 231 /**
Kojto 107:4f6c30876dfa 232 * @}
Kojto 107:4f6c30876dfa 233 */
Kojto 107:4f6c30876dfa 234
Kojto 107:4f6c30876dfa 235 /** @defgroup USART_Clock_Polarity USART Clock Polarity
Kojto 107:4f6c30876dfa 236 * @{
Kojto 107:4f6c30876dfa 237 */
Kojto 107:4f6c30876dfa 238 #define USART_POLARITY_LOW ((uint32_t)0x0000)
Kojto 107:4f6c30876dfa 239 #define USART_POLARITY_HIGH ((uint32_t)USART_CR2_CPOL)
Kojto 107:4f6c30876dfa 240 /**
Kojto 107:4f6c30876dfa 241 * @}
Kojto 107:4f6c30876dfa 242 */
Kojto 107:4f6c30876dfa 243
Kojto 107:4f6c30876dfa 244 /** @defgroup USART_Clock_Phase USART Clock Phase
Kojto 107:4f6c30876dfa 245 * @{
Kojto 107:4f6c30876dfa 246 */
Kojto 107:4f6c30876dfa 247 #define USART_PHASE_1EDGE ((uint32_t)0x0000)
Kojto 107:4f6c30876dfa 248 #define USART_PHASE_2EDGE ((uint32_t)USART_CR2_CPHA)
Kojto 107:4f6c30876dfa 249 /**
Kojto 107:4f6c30876dfa 250 * @}
Kojto 107:4f6c30876dfa 251 */
Kojto 107:4f6c30876dfa 252
Kojto 107:4f6c30876dfa 253 /** @defgroup USART_Last_Bit USART Last Bit
Kojto 107:4f6c30876dfa 254 * @{
Kojto 107:4f6c30876dfa 255 */
Kojto 107:4f6c30876dfa 256 #define USART_LASTBIT_DISABLE ((uint32_t)0x0000)
Kojto 107:4f6c30876dfa 257 #define USART_LASTBIT_ENABLE ((uint32_t)USART_CR2_LBCL)
Kojto 107:4f6c30876dfa 258 /**
Kojto 107:4f6c30876dfa 259 * @}
Kojto 107:4f6c30876dfa 260 */
Kojto 107:4f6c30876dfa 261
Kojto 107:4f6c30876dfa 262 /** @defgroup USART_Request_Parameters USART Request Parameters
Kojto 107:4f6c30876dfa 263 * @{
Kojto 107:4f6c30876dfa 264 */
Kojto 107:4f6c30876dfa 265 #define USART_RXDATA_FLUSH_REQUEST ((uint32_t)USART_RQR_RXFRQ) /*!< Receive Data flush Request */
Kojto 107:4f6c30876dfa 266 #define USART_TXDATA_FLUSH_REQUEST ((uint32_t)USART_RQR_TXFRQ) /*!< Transmit data flush Request */
Kojto 107:4f6c30876dfa 267 /**
Kojto 107:4f6c30876dfa 268 * @}
Kojto 107:4f6c30876dfa 269 */
Kojto 107:4f6c30876dfa 270
Kojto 107:4f6c30876dfa 271 /** @defgroup USART_Flags USART Flags
Kojto 107:4f6c30876dfa 272 * Elements values convention: 0xXXXX
Kojto 107:4f6c30876dfa 273 * - 0xXXXX : Flag mask in the ISR register
Kojto 107:4f6c30876dfa 274 * @{
Kojto 107:4f6c30876dfa 275 */
Kojto 107:4f6c30876dfa 276 #define USART_FLAG_REACK ((uint32_t)0x00400000)
Kojto 107:4f6c30876dfa 277 #define USART_FLAG_TEACK ((uint32_t)0x00200000)
Kojto 107:4f6c30876dfa 278 #define USART_FLAG_BUSY ((uint32_t)0x00010000)
Kojto 107:4f6c30876dfa 279 #define USART_FLAG_CTS ((uint32_t)0x00000400)
Kojto 107:4f6c30876dfa 280 #define USART_FLAG_CTSIF ((uint32_t)0x00000200)
Kojto 107:4f6c30876dfa 281 #define USART_FLAG_LBDF ((uint32_t)0x00000100)
Kojto 107:4f6c30876dfa 282 #define USART_FLAG_TXE ((uint32_t)0x00000080)
Kojto 107:4f6c30876dfa 283 #define USART_FLAG_TC ((uint32_t)0x00000040)
Kojto 107:4f6c30876dfa 284 #define USART_FLAG_RXNE ((uint32_t)0x00000020)
Kojto 107:4f6c30876dfa 285 #define USART_FLAG_IDLE ((uint32_t)0x00000010)
Kojto 107:4f6c30876dfa 286 #define USART_FLAG_ORE ((uint32_t)0x00000008)
Kojto 107:4f6c30876dfa 287 #define USART_FLAG_NE ((uint32_t)0x00000004)
Kojto 107:4f6c30876dfa 288 #define USART_FLAG_FE ((uint32_t)0x00000002)
Kojto 107:4f6c30876dfa 289 #define USART_FLAG_PE ((uint32_t)0x00000001)
Kojto 107:4f6c30876dfa 290 /**
Kojto 107:4f6c30876dfa 291 * @}
Kojto 107:4f6c30876dfa 292 */
Kojto 107:4f6c30876dfa 293
Kojto 107:4f6c30876dfa 294 /** @defgroup USART_Interrupt_definition USART Interrupts Definition
Kojto 107:4f6c30876dfa 295 * Elements values convention: 0000ZZZZ0XXYYYYYb
Kojto 107:4f6c30876dfa 296 * - YYYYY : Interrupt source position in the XX register (5bits)
Kojto 107:4f6c30876dfa 297 * - XX : Interrupt source register (2bits)
Kojto 107:4f6c30876dfa 298 * - 01: CR1 register
Kojto 107:4f6c30876dfa 299 * - 10: CR2 register
Kojto 107:4f6c30876dfa 300 * - 11: CR3 register
Kojto 107:4f6c30876dfa 301 * - ZZZZ : Flag position in the ISR register(4bits)
Kojto 107:4f6c30876dfa 302 * @{
Kojto 107:4f6c30876dfa 303 */
Kojto 107:4f6c30876dfa 304
Kojto 107:4f6c30876dfa 305 #define USART_IT_PE ((uint16_t)0x0028)
Kojto 107:4f6c30876dfa 306 #define USART_IT_TXE ((uint16_t)0x0727)
Kojto 107:4f6c30876dfa 307 #define USART_IT_TC ((uint16_t)0x0626)
Kojto 107:4f6c30876dfa 308 #define USART_IT_RXNE ((uint16_t)0x0525)
Kojto 107:4f6c30876dfa 309 #define USART_IT_IDLE ((uint16_t)0x0424)
Kojto 107:4f6c30876dfa 310 #define USART_IT_ERR ((uint16_t)0x0060)
Kojto 107:4f6c30876dfa 311
Kojto 107:4f6c30876dfa 312 #define USART_IT_ORE ((uint16_t)0x0300)
Kojto 107:4f6c30876dfa 313 #define USART_IT_NE ((uint16_t)0x0200)
Kojto 107:4f6c30876dfa 314 #define USART_IT_FE ((uint16_t)0x0100)
Kojto 107:4f6c30876dfa 315 /**
Kojto 107:4f6c30876dfa 316 * @}
Kojto 107:4f6c30876dfa 317 */
Kojto 107:4f6c30876dfa 318
Kojto 107:4f6c30876dfa 319 /** @defgroup USART_IT_CLEAR_Flags USART Interruption Clear Flags
Kojto 107:4f6c30876dfa 320 * @{
Kojto 107:4f6c30876dfa 321 */
Kojto 107:4f6c30876dfa 322 #define USART_CLEAR_PEF USART_ICR_PECF /*!< Parity Error Clear Flag */
Kojto 107:4f6c30876dfa 323 #define USART_CLEAR_FEF USART_ICR_FECF /*!< Framing Error Clear Flag */
Kojto 107:4f6c30876dfa 324 #define USART_CLEAR_NEF USART_ICR_NCF /*!< Noise detected Clear Flag */
Kojto 107:4f6c30876dfa 325 #define USART_CLEAR_OREF USART_ICR_ORECF /*!< OverRun Error Clear Flag */
Kojto 107:4f6c30876dfa 326 #define USART_CLEAR_IDLEF USART_ICR_IDLECF /*!< IDLE line detected Clear Flag */
Kojto 107:4f6c30876dfa 327 #define USART_CLEAR_TCF USART_ICR_TCCF /*!< Transmission Complete Clear Flag */
Kojto 107:4f6c30876dfa 328 #define USART_CLEAR_CTSF USART_ICR_CTSCF /*!< CTS Interrupt Clear Flag */
Kojto 107:4f6c30876dfa 329 /**
Kojto 107:4f6c30876dfa 330 * @}
Kojto 107:4f6c30876dfa 331 */
Kojto 107:4f6c30876dfa 332
Kojto 107:4f6c30876dfa 333 /**
Kojto 107:4f6c30876dfa 334 * @}
Kojto 107:4f6c30876dfa 335 */
Kojto 107:4f6c30876dfa 336
Kojto 107:4f6c30876dfa 337 /* Exported macros -----------------------------------------------------------*/
Kojto 107:4f6c30876dfa 338 /** @defgroup USART_Exported_Macros USART Exported Macros
Kojto 107:4f6c30876dfa 339 * @{
Kojto 107:4f6c30876dfa 340 */
Kojto 107:4f6c30876dfa 341
Kojto 107:4f6c30876dfa 342 /** @brief Reset USART handle state
Kojto 107:4f6c30876dfa 343 * @param __HANDLE__: USART handle.
Kojto 107:4f6c30876dfa 344 * @retval None
Kojto 107:4f6c30876dfa 345 */
Kojto 107:4f6c30876dfa 346 #define __HAL_USART_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_USART_STATE_RESET)
Kojto 107:4f6c30876dfa 347
Kojto 107:4f6c30876dfa 348 /** @brief Checks whether the specified USART flag is set or not.
Kojto 107:4f6c30876dfa 349 * @param __HANDLE__: specifies the USART Handle
Kojto 107:4f6c30876dfa 350 * @param __FLAG__: specifies the flag to check.
Kojto 107:4f6c30876dfa 351 * This parameter can be one of the following values:
Kojto 107:4f6c30876dfa 352 * @arg USART_FLAG_REACK: Receive enable acknowledge flag
Kojto 107:4f6c30876dfa 353 * @arg USART_FLAG_TEACK: Transmit enable acknowledge flag
Kojto 107:4f6c30876dfa 354 * @arg USART_FLAG_BUSY: Busy flag
Kojto 107:4f6c30876dfa 355 * @arg USART_FLAG_CTS: CTS Change flag
Kojto 107:4f6c30876dfa 356 * @arg USART_FLAG_TXE: Transmit data register empty flag
Kojto 107:4f6c30876dfa 357 * @arg USART_FLAG_TC: Transmission Complete flag
Kojto 107:4f6c30876dfa 358 * @arg USART_FLAG_RXNE: Receive data register not empty flag
Kojto 107:4f6c30876dfa 359 * @arg USART_FLAG_IDLE: Idle Line detection flag
Kojto 107:4f6c30876dfa 360 * @arg USART_FLAG_ORE: OverRun Error flag
Kojto 107:4f6c30876dfa 361 * @arg USART_FLAG_NE: Noise Error flag
Kojto 107:4f6c30876dfa 362 * @arg USART_FLAG_FE: Framing Error flag
Kojto 107:4f6c30876dfa 363 * @arg USART_FLAG_PE: Parity Error flag
Kojto 107:4f6c30876dfa 364 * @retval The new state of __FLAG__ (TRUE or FALSE).
Kojto 107:4f6c30876dfa 365 */
Kojto 107:4f6c30876dfa 366 #define __HAL_USART_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->ISR & (__FLAG__)) == (__FLAG__))
Kojto 107:4f6c30876dfa 367
Kojto 107:4f6c30876dfa 368
Kojto 107:4f6c30876dfa 369 /** @brief Enables the specified USART interrupt.
Kojto 107:4f6c30876dfa 370 * @param __HANDLE__: specifies the USART Handle
Kojto 107:4f6c30876dfa 371 * @param __INTERRUPT__: specifies the USART interrupt source to enable.
Kojto 107:4f6c30876dfa 372 * This parameter can be one of the following values:
Kojto 107:4f6c30876dfa 373 * @arg USART_IT_TXE: Transmit Data Register empty interrupt
Kojto 107:4f6c30876dfa 374 * @arg USART_IT_TC: Transmission complete interrupt
Kojto 107:4f6c30876dfa 375 * @arg USART_IT_RXNE: Receive Data register not empty interrupt
Kojto 107:4f6c30876dfa 376 * @arg USART_IT_IDLE: Idle line detection interrupt
Kojto 107:4f6c30876dfa 377 * @arg USART_IT_PE: Parity Error interrupt
Kojto 107:4f6c30876dfa 378 * @arg USART_IT_ERR: Error interrupt(Frame error, noise error, overrun error)
Kojto 107:4f6c30876dfa 379 * @retval None
Kojto 107:4f6c30876dfa 380 */
Kojto 107:4f6c30876dfa 381 #define __HAL_USART_ENABLE_IT(__HANDLE__, __INTERRUPT__) (((((uint8_t)(__INTERRUPT__)) >> 5U) == 1)? ((__HANDLE__)->Instance->CR1 |= (1U << ((__INTERRUPT__) & USART_IT_MASK))): \
Kojto 107:4f6c30876dfa 382 ((((uint8_t)(__INTERRUPT__)) >> 5U) == 2)? ((__HANDLE__)->Instance->CR2 |= (1U << ((__INTERRUPT__) & USART_IT_MASK))): \
Kojto 107:4f6c30876dfa 383 ((__HANDLE__)->Instance->CR3 |= (1U << ((__INTERRUPT__) & USART_IT_MASK))))
Kojto 107:4f6c30876dfa 384
Kojto 107:4f6c30876dfa 385 /** @brief Disables the specified USART interrupt.
Kojto 107:4f6c30876dfa 386 * @param __HANDLE__: specifies the USART Handle.
Kojto 107:4f6c30876dfa 387 * @param __INTERRUPT__: specifies the USART interrupt source to disable.
Kojto 107:4f6c30876dfa 388 * This parameter can be one of the following values:
Kojto 107:4f6c30876dfa 389 * @arg USART_IT_TXE: Transmit Data Register empty interrupt
Kojto 107:4f6c30876dfa 390 * @arg USART_IT_TC: Transmission complete interrupt
Kojto 107:4f6c30876dfa 391 * @arg USART_IT_RXNE: Receive Data register not empty interrupt
Kojto 107:4f6c30876dfa 392 * @arg USART_IT_IDLE: Idle line detection interrupt
Kojto 107:4f6c30876dfa 393 * @arg USART_IT_PE: Parity Error interrupt
Kojto 107:4f6c30876dfa 394 * @arg USART_IT_ERR: Error interrupt(Frame error, noise error, overrun error)
Kojto 107:4f6c30876dfa 395 * @retval None
Kojto 107:4f6c30876dfa 396 */
Kojto 107:4f6c30876dfa 397 #define __HAL_USART_DISABLE_IT(__HANDLE__, __INTERRUPT__) (((((uint8_t)(__INTERRUPT__)) >> 5U) == 1)? ((__HANDLE__)->Instance->CR1 &= ~ (1U << ((__INTERRUPT__) & USART_IT_MASK))): \
Kojto 107:4f6c30876dfa 398 ((((uint8_t)(__INTERRUPT__)) >> 5U) == 2)? ((__HANDLE__)->Instance->CR2 &= ~ (1U << ((__INTERRUPT__) & USART_IT_MASK))): \
Kojto 107:4f6c30876dfa 399 ((__HANDLE__)->Instance->CR3 &= ~ (1U << ((__INTERRUPT__) & USART_IT_MASK))))
Kojto 107:4f6c30876dfa 400
Kojto 107:4f6c30876dfa 401
Kojto 107:4f6c30876dfa 402 /** @brief Checks whether the specified USART interrupt has occurred or not.
Kojto 107:4f6c30876dfa 403 * @param __HANDLE__: specifies the USART Handle
Kojto 107:4f6c30876dfa 404 * @param __IT__: specifies the USART interrupt source to check.
Kojto 107:4f6c30876dfa 405 * This parameter can be one of the following values:
Kojto 107:4f6c30876dfa 406 * @arg USART_IT_TXE: Transmit Data Register empty interrupt
Kojto 107:4f6c30876dfa 407 * @arg USART_IT_TC: Transmission complete interrupt
Kojto 107:4f6c30876dfa 408 * @arg USART_IT_RXNE: Receive Data register not empty interrupt
Kojto 107:4f6c30876dfa 409 * @arg USART_IT_IDLE: Idle line detection interrupt
Kojto 107:4f6c30876dfa 410 * @arg USART_IT_ORE: OverRun Error interrupt
Kojto 107:4f6c30876dfa 411 * @arg USART_IT_NE: Noise Error interrupt
Kojto 107:4f6c30876dfa 412 * @arg USART_IT_FE: Framing Error interrupt
Kojto 107:4f6c30876dfa 413 * @arg USART_IT_PE: Parity Error interrupt
Kojto 107:4f6c30876dfa 414 * @retval The new state of __IT__ (TRUE or FALSE).
Kojto 107:4f6c30876dfa 415 */
Kojto 107:4f6c30876dfa 416 #define __HAL_USART_GET_IT(__HANDLE__, __IT__) ((__HANDLE__)->Instance->ISR & ((uint32_t)1 << ((__IT__)>> 0x08)))
Kojto 107:4f6c30876dfa 417
Kojto 107:4f6c30876dfa 418 /** @brief Checks whether the specified USART interrupt source is enabled.
Kojto 107:4f6c30876dfa 419 * @param __HANDLE__: specifies the USART Handle.
Kojto 107:4f6c30876dfa 420 * @param __IT__: specifies the USART interrupt source to check.
Kojto 107:4f6c30876dfa 421 * This parameter can be one of the following values:
Kojto 107:4f6c30876dfa 422 * @arg USART_IT_TXE: Transmit Data Register empty interrupt
Kojto 107:4f6c30876dfa 423 * @arg USART_IT_TC: Transmission complete interrupt
Kojto 107:4f6c30876dfa 424 * @arg USART_IT_RXNE: Receive Data register not empty interrupt
Kojto 107:4f6c30876dfa 425 * @arg USART_IT_IDLE: Idle line detection interrupt
Kojto 107:4f6c30876dfa 426 * @arg USART_IT_ORE: OverRun Error interrupt
Kojto 107:4f6c30876dfa 427 * @arg USART_IT_NE: Noise Error interrupt
Kojto 107:4f6c30876dfa 428 * @arg USART_IT_FE: Framing Error interrupt
Kojto 107:4f6c30876dfa 429 * @arg USART_IT_PE: Parity Error interrupt
Kojto 107:4f6c30876dfa 430 * @retval The new state of __IT__ (TRUE or FALSE).
Kojto 107:4f6c30876dfa 431 */
Kojto 107:4f6c30876dfa 432 #define __HAL_USART_GET_IT_SOURCE(__HANDLE__, __IT__) ((((((uint8_t)(__IT__)) >> 5) == 1)? (__HANDLE__)->Instance->CR1:(((((uint8_t)(__IT__)) >> 5) == 2)? \
Kojto 107:4f6c30876dfa 433 (__HANDLE__)->Instance->CR2 : (__HANDLE__)->Instance->CR3)) & ((uint32_t)1 << \
Kojto 107:4f6c30876dfa 434 (((uint16_t)(__IT__)) & USART_IT_MASK)))
Kojto 107:4f6c30876dfa 435
Kojto 107:4f6c30876dfa 436
Kojto 107:4f6c30876dfa 437 /** @brief Clears the specified USART ISR flag, in setting the proper ICR register flag.
Kojto 107:4f6c30876dfa 438 * @param __HANDLE__: specifies the USART Handle.
Kojto 107:4f6c30876dfa 439 * @param __IT_CLEAR__: specifies the interrupt clear register flag that needs to be set
Kojto 107:4f6c30876dfa 440 * to clear the corresponding interrupt
Kojto 107:4f6c30876dfa 441 * This parameter can be one of the following values:
Kojto 107:4f6c30876dfa 442 * @arg USART_CLEAR_PEF: Parity Error Clear Flag
Kojto 107:4f6c30876dfa 443 * @arg USART_CLEAR_FEF: Framing Error Clear Flag
Kojto 107:4f6c30876dfa 444 * @arg USART_CLEAR_NEF: Noise detected Clear Flag
Kojto 107:4f6c30876dfa 445 * @arg USART_CLEAR_OREF: OverRun Error Clear Flag
Kojto 107:4f6c30876dfa 446 * @arg USART_CLEAR_IDLEF: IDLE line detected Clear Flag
Kojto 107:4f6c30876dfa 447 * @arg USART_CLEAR_TCF: Transmission Complete Clear Flag
Kojto 107:4f6c30876dfa 448 * @arg USART_CLEAR_CTSF: CTS Interrupt Clear Flag
Kojto 107:4f6c30876dfa 449 * @retval None
Kojto 107:4f6c30876dfa 450 */
Kojto 107:4f6c30876dfa 451 #define __HAL_USART_CLEAR_IT(__HANDLE__, __IT_CLEAR__) ((__HANDLE__)->Instance->ICR = (uint32_t)(__IT_CLEAR__))
Kojto 107:4f6c30876dfa 452
Kojto 107:4f6c30876dfa 453 /** @brief Set a specific USART request flag.
Kojto 107:4f6c30876dfa 454 * @param __HANDLE__: specifies the USART Handle.
Kojto 107:4f6c30876dfa 455 * @param __REQ__: specifies the request flag to set
Kojto 107:4f6c30876dfa 456 * This parameter can be one of the following values:
Kojto 107:4f6c30876dfa 457 * @arg USART_RXDATA_FLUSH_REQUEST: Receive Data flush Request
Kojto 107:4f6c30876dfa 458 * @arg USART_TXDATA_FLUSH_REQUEST: Transmit data flush Request
Kojto 107:4f6c30876dfa 459 *
Kojto 107:4f6c30876dfa 460 * @retval None
Kojto 107:4f6c30876dfa 461 */
Kojto 107:4f6c30876dfa 462 #define __HAL_USART_SEND_REQ(__HANDLE__, __REQ__) ((__HANDLE__)->Instance->RQR |= (uint16_t)(__REQ__))
Kojto 107:4f6c30876dfa 463
Kojto 107:4f6c30876dfa 464 /** @brief Enable USART
Kojto 107:4f6c30876dfa 465 * @param __HANDLE__: specifies the USART Handle.
Kojto 107:4f6c30876dfa 466 * @retval None
Kojto 107:4f6c30876dfa 467 */
Kojto 107:4f6c30876dfa 468 #define __HAL_USART_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 |= USART_CR1_UE)
Kojto 107:4f6c30876dfa 469
Kojto 107:4f6c30876dfa 470 /** @brief Disable USART
Kojto 107:4f6c30876dfa 471 * @param __HANDLE__: specifies the USART Handle.
Kojto 107:4f6c30876dfa 472 * @retval None
Kojto 107:4f6c30876dfa 473 */
Kojto 107:4f6c30876dfa 474 #define __HAL_USART_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 &= ~USART_CR1_UE)
Kojto 107:4f6c30876dfa 475
Kojto 107:4f6c30876dfa 476 /**
Kojto 107:4f6c30876dfa 477 * @}
Kojto 107:4f6c30876dfa 478 */
Kojto 107:4f6c30876dfa 479 /* Include UART HAL Extension module */
Kojto 107:4f6c30876dfa 480 #include "stm32f7xx_hal_usart_ex.h"
Kojto 107:4f6c30876dfa 481
Kojto 107:4f6c30876dfa 482 /* Exported functions --------------------------------------------------------*/
Kojto 107:4f6c30876dfa 483 /** @addtogroup USART_Exported_Functions
Kojto 107:4f6c30876dfa 484 * @{
Kojto 107:4f6c30876dfa 485 */
Kojto 107:4f6c30876dfa 486
Kojto 107:4f6c30876dfa 487 /** @addtogroup USART_Exported_Functions_Group1
Kojto 107:4f6c30876dfa 488 * @{
Kojto 107:4f6c30876dfa 489 */
Kojto 107:4f6c30876dfa 490 /* Initialization/de-initialization functions **********************************/
Kojto 107:4f6c30876dfa 491 HAL_StatusTypeDef HAL_USART_Init(USART_HandleTypeDef *husart);
Kojto 107:4f6c30876dfa 492 HAL_StatusTypeDef HAL_USART_DeInit(USART_HandleTypeDef *husart);
Kojto 107:4f6c30876dfa 493 void HAL_USART_MspInit(USART_HandleTypeDef *husart);
Kojto 107:4f6c30876dfa 494 void HAL_USART_MspDeInit(USART_HandleTypeDef *husart);
Kojto 107:4f6c30876dfa 495 HAL_StatusTypeDef HAL_USART_CheckIdleState(USART_HandleTypeDef *husart);
Kojto 107:4f6c30876dfa 496 /**
Kojto 107:4f6c30876dfa 497 * @}
Kojto 107:4f6c30876dfa 498 */
Kojto 107:4f6c30876dfa 499
Kojto 107:4f6c30876dfa 500 /** @addtogroup USART_Exported_Functions_Group2
Kojto 107:4f6c30876dfa 501 * @{
Kojto 107:4f6c30876dfa 502 */
Kojto 107:4f6c30876dfa 503 /* IO operation functions *******************************************************/
Kojto 107:4f6c30876dfa 504 HAL_StatusTypeDef HAL_USART_Transmit(USART_HandleTypeDef *husart, uint8_t *pTxData, uint16_t Size, uint32_t Timeout);
Kojto 107:4f6c30876dfa 505 HAL_StatusTypeDef HAL_USART_Receive(USART_HandleTypeDef *husart, uint8_t *pRxData, uint16_t Size, uint32_t Timeout);
Kojto 107:4f6c30876dfa 506 HAL_StatusTypeDef HAL_USART_TransmitReceive(USART_HandleTypeDef *husart, uint8_t *pTxData, uint8_t *pRxData, uint16_t Size, uint32_t Timeout);
Kojto 107:4f6c30876dfa 507 HAL_StatusTypeDef HAL_USART_Transmit_IT(USART_HandleTypeDef *husart, uint8_t *pTxData, uint16_t Size);
Kojto 107:4f6c30876dfa 508 HAL_StatusTypeDef HAL_USART_Receive_IT(USART_HandleTypeDef *husart, uint8_t *pRxData, uint16_t Size);
Kojto 107:4f6c30876dfa 509 HAL_StatusTypeDef HAL_USART_TransmitReceive_IT(USART_HandleTypeDef *husart, uint8_t *pTxData, uint8_t *pRxData, uint16_t Size);
Kojto 107:4f6c30876dfa 510 HAL_StatusTypeDef HAL_USART_Transmit_DMA(USART_HandleTypeDef *husart, uint8_t *pTxData, uint16_t Size);
Kojto 107:4f6c30876dfa 511 HAL_StatusTypeDef HAL_USART_Receive_DMA(USART_HandleTypeDef *husart, uint8_t *pRxData, uint16_t Size);
Kojto 107:4f6c30876dfa 512 HAL_StatusTypeDef HAL_USART_TransmitReceive_DMA(USART_HandleTypeDef *husart, uint8_t *pTxData, uint8_t *pRxData, uint16_t Size);
Kojto 107:4f6c30876dfa 513 HAL_StatusTypeDef HAL_USART_DMAPause(USART_HandleTypeDef *husart);
Kojto 107:4f6c30876dfa 514 HAL_StatusTypeDef HAL_USART_DMAResume(USART_HandleTypeDef *husart);
Kojto 107:4f6c30876dfa 515 HAL_StatusTypeDef HAL_USART_DMAStop(USART_HandleTypeDef *husart);
Kojto 107:4f6c30876dfa 516 void HAL_USART_IRQHandler(USART_HandleTypeDef *husart);
Kojto 107:4f6c30876dfa 517 void HAL_USART_TxHalfCpltCallback(USART_HandleTypeDef *husart);
Kojto 107:4f6c30876dfa 518 void HAL_USART_TxCpltCallback(USART_HandleTypeDef *husart);
Kojto 107:4f6c30876dfa 519 void HAL_USART_RxCpltCallback(USART_HandleTypeDef *husart);
Kojto 107:4f6c30876dfa 520 void HAL_USART_RxHalfCpltCallback(USART_HandleTypeDef *husart);
Kojto 107:4f6c30876dfa 521 void HAL_USART_TxRxCpltCallback(USART_HandleTypeDef *husart);
Kojto 107:4f6c30876dfa 522 void HAL_USART_ErrorCallback(USART_HandleTypeDef *husart);
Kojto 107:4f6c30876dfa 523
Kojto 107:4f6c30876dfa 524 /**
Kojto 107:4f6c30876dfa 525 * @}
Kojto 107:4f6c30876dfa 526 */
Kojto 107:4f6c30876dfa 527
Kojto 107:4f6c30876dfa 528 /** @addtogroup USART_Exported_Functions_Group3
Kojto 107:4f6c30876dfa 529 * @{
Kojto 107:4f6c30876dfa 530 */
Kojto 107:4f6c30876dfa 531 /* Peripheral State functions ************************************************/
Kojto 107:4f6c30876dfa 532 HAL_USART_StateTypeDef HAL_USART_GetState(USART_HandleTypeDef *husart);
Kojto 107:4f6c30876dfa 533 uint32_t HAL_USART_GetError(USART_HandleTypeDef *husart);
Kojto 107:4f6c30876dfa 534
Kojto 107:4f6c30876dfa 535 /**
Kojto 107:4f6c30876dfa 536 * @}
Kojto 107:4f6c30876dfa 537 */
Kojto 107:4f6c30876dfa 538
Kojto 107:4f6c30876dfa 539 /**
Kojto 107:4f6c30876dfa 540 * @}
Kojto 107:4f6c30876dfa 541 */
Kojto 107:4f6c30876dfa 542 /* Private types -------------------------------------------------------------*/
Kojto 107:4f6c30876dfa 543 /* Private variables ---------------------------------------------------------*/
Kojto 107:4f6c30876dfa 544 /* Private constants ---------------------------------------------------------*/
Kojto 107:4f6c30876dfa 545 /** @defgroup USART_Private_Constants USART Private Constants
Kojto 107:4f6c30876dfa 546 * @{
Kojto 107:4f6c30876dfa 547 */
Kojto 107:4f6c30876dfa 548 /** @brief USART interruptions flag mask
Kojto 107:4f6c30876dfa 549 *
Kojto 107:4f6c30876dfa 550 */
Kojto 107:4f6c30876dfa 551 #define USART_IT_MASK ((uint16_t)0x001F)
Kojto 107:4f6c30876dfa 552
Kojto 107:4f6c30876dfa 553 /**
Kojto 107:4f6c30876dfa 554 * @}
Kojto 107:4f6c30876dfa 555 */
Kojto 107:4f6c30876dfa 556 /* Private macros ------------------------------------------------------------*/
Kojto 107:4f6c30876dfa 557 /** @defgroup USART_Private_Macros USART Private Macros
Kojto 107:4f6c30876dfa 558 * @{
Kojto 107:4f6c30876dfa 559 */
Kojto 107:4f6c30876dfa 560 /** @brief Reports the USART clock source.
Kojto 107:4f6c30876dfa 561 * @param __HANDLE__: specifies the USART Handle
Kojto 107:4f6c30876dfa 562 * @param __CLOCKSOURCE__ : output variable
Kojto 107:4f6c30876dfa 563 * @retval the USART clocking source, written in __CLOCKSOURCE__.
Kojto 107:4f6c30876dfa 564 */
Kojto 107:4f6c30876dfa 565 #define USART_GETCLOCKSOURCE(__HANDLE__, __CLOCKSOURCE__)\
Kojto 107:4f6c30876dfa 566 do { \
Kojto 107:4f6c30876dfa 567 if((__HANDLE__)->Instance == USART1) \
Kojto 107:4f6c30876dfa 568 { \
Kojto 107:4f6c30876dfa 569 switch(__HAL_RCC_GET_USART1_SOURCE()) \
Kojto 107:4f6c30876dfa 570 { \
Kojto 107:4f6c30876dfa 571 case RCC_USART1CLKSOURCE_PCLK2: \
Kojto 107:4f6c30876dfa 572 (__CLOCKSOURCE__) = USART_CLOCKSOURCE_PCLK2; \
Kojto 107:4f6c30876dfa 573 break; \
Kojto 107:4f6c30876dfa 574 case RCC_USART1CLKSOURCE_HSI: \
Kojto 107:4f6c30876dfa 575 (__CLOCKSOURCE__) = USART_CLOCKSOURCE_HSI; \
Kojto 107:4f6c30876dfa 576 break; \
Kojto 107:4f6c30876dfa 577 case RCC_USART1CLKSOURCE_SYSCLK: \
Kojto 107:4f6c30876dfa 578 (__CLOCKSOURCE__) = USART_CLOCKSOURCE_SYSCLK; \
Kojto 107:4f6c30876dfa 579 break; \
Kojto 107:4f6c30876dfa 580 case RCC_USART1CLKSOURCE_LSE: \
Kojto 107:4f6c30876dfa 581 (__CLOCKSOURCE__) = USART_CLOCKSOURCE_LSE; \
Kojto 107:4f6c30876dfa 582 break; \
Kojto 107:4f6c30876dfa 583 default: \
Kojto 107:4f6c30876dfa 584 break; \
Kojto 107:4f6c30876dfa 585 } \
Kojto 107:4f6c30876dfa 586 } \
Kojto 107:4f6c30876dfa 587 else if((__HANDLE__)->Instance == USART2) \
Kojto 107:4f6c30876dfa 588 { \
Kojto 107:4f6c30876dfa 589 switch(__HAL_RCC_GET_USART2_SOURCE()) \
Kojto 107:4f6c30876dfa 590 { \
Kojto 107:4f6c30876dfa 591 case RCC_USART2CLKSOURCE_PCLK1: \
Kojto 107:4f6c30876dfa 592 (__CLOCKSOURCE__) = USART_CLOCKSOURCE_PCLK1; \
Kojto 107:4f6c30876dfa 593 break; \
Kojto 107:4f6c30876dfa 594 case RCC_USART2CLKSOURCE_HSI: \
Kojto 107:4f6c30876dfa 595 (__CLOCKSOURCE__) = USART_CLOCKSOURCE_HSI; \
Kojto 107:4f6c30876dfa 596 break; \
Kojto 107:4f6c30876dfa 597 case RCC_USART2CLKSOURCE_SYSCLK: \
Kojto 107:4f6c30876dfa 598 (__CLOCKSOURCE__) = USART_CLOCKSOURCE_SYSCLK; \
Kojto 107:4f6c30876dfa 599 break; \
Kojto 107:4f6c30876dfa 600 case RCC_USART2CLKSOURCE_LSE: \
Kojto 107:4f6c30876dfa 601 (__CLOCKSOURCE__) = USART_CLOCKSOURCE_LSE; \
Kojto 107:4f6c30876dfa 602 break; \
Kojto 107:4f6c30876dfa 603 default: \
Kojto 107:4f6c30876dfa 604 break; \
Kojto 107:4f6c30876dfa 605 } \
Kojto 107:4f6c30876dfa 606 } \
Kojto 107:4f6c30876dfa 607 else if((__HANDLE__)->Instance == USART3) \
Kojto 107:4f6c30876dfa 608 { \
Kojto 107:4f6c30876dfa 609 switch(__HAL_RCC_GET_USART3_SOURCE()) \
Kojto 107:4f6c30876dfa 610 { \
Kojto 107:4f6c30876dfa 611 case RCC_USART3CLKSOURCE_PCLK1: \
Kojto 107:4f6c30876dfa 612 (__CLOCKSOURCE__) = USART_CLOCKSOURCE_PCLK1; \
Kojto 107:4f6c30876dfa 613 break; \
Kojto 107:4f6c30876dfa 614 case RCC_USART3CLKSOURCE_HSI: \
Kojto 107:4f6c30876dfa 615 (__CLOCKSOURCE__) = USART_CLOCKSOURCE_HSI; \
Kojto 107:4f6c30876dfa 616 break; \
Kojto 107:4f6c30876dfa 617 case RCC_USART3CLKSOURCE_SYSCLK: \
Kojto 107:4f6c30876dfa 618 (__CLOCKSOURCE__) = USART_CLOCKSOURCE_SYSCLK; \
Kojto 107:4f6c30876dfa 619 break; \
Kojto 107:4f6c30876dfa 620 case RCC_USART3CLKSOURCE_LSE: \
Kojto 107:4f6c30876dfa 621 (__CLOCKSOURCE__) = USART_CLOCKSOURCE_LSE; \
Kojto 107:4f6c30876dfa 622 break; \
Kojto 107:4f6c30876dfa 623 default: \
Kojto 107:4f6c30876dfa 624 break; \
Kojto 107:4f6c30876dfa 625 } \
Kojto 107:4f6c30876dfa 626 } \
Kojto 107:4f6c30876dfa 627 else if((__HANDLE__)->Instance == USART6) \
Kojto 107:4f6c30876dfa 628 { \
Kojto 107:4f6c30876dfa 629 switch(__HAL_RCC_GET_USART6_SOURCE()) \
Kojto 107:4f6c30876dfa 630 { \
Kojto 107:4f6c30876dfa 631 case RCC_USART6CLKSOURCE_PCLK2: \
Kojto 107:4f6c30876dfa 632 (__CLOCKSOURCE__) = USART_CLOCKSOURCE_PCLK2; \
Kojto 107:4f6c30876dfa 633 break; \
Kojto 107:4f6c30876dfa 634 case RCC_USART6CLKSOURCE_HSI: \
Kojto 107:4f6c30876dfa 635 (__CLOCKSOURCE__) = USART_CLOCKSOURCE_HSI; \
Kojto 107:4f6c30876dfa 636 break; \
Kojto 107:4f6c30876dfa 637 case RCC_USART6CLKSOURCE_SYSCLK: \
Kojto 107:4f6c30876dfa 638 (__CLOCKSOURCE__) = USART_CLOCKSOURCE_SYSCLK; \
Kojto 107:4f6c30876dfa 639 break; \
Kojto 107:4f6c30876dfa 640 case RCC_USART6CLKSOURCE_LSE: \
Kojto 107:4f6c30876dfa 641 (__CLOCKSOURCE__) = USART_CLOCKSOURCE_LSE; \
Kojto 107:4f6c30876dfa 642 break; \
Kojto 107:4f6c30876dfa 643 default: \
Kojto 107:4f6c30876dfa 644 break; \
Kojto 107:4f6c30876dfa 645 } \
Kojto 107:4f6c30876dfa 646 } \
Kojto 107:4f6c30876dfa 647 } while(0)
Kojto 107:4f6c30876dfa 648
Kojto 107:4f6c30876dfa 649
Kojto 107:4f6c30876dfa 650 #define IS_USART_STOPBITS(__STOPBITS__) (((__STOPBITS__) == USART_STOPBITS_1) || \
Kojto 107:4f6c30876dfa 651 ((__STOPBITS__) == USART_STOPBITS_1_5) || \
Kojto 107:4f6c30876dfa 652 ((__STOPBITS__) == USART_STOPBITS_2))
Kojto 107:4f6c30876dfa 653 #define IS_USART_PARITY(__PARITY__) (((__PARITY__) == USART_PARITY_NONE) || \
Kojto 107:4f6c30876dfa 654 ((__PARITY__) == USART_PARITY_EVEN) || \
Kojto 107:4f6c30876dfa 655 ((__PARITY__) == USART_PARITY_ODD))
Kojto 107:4f6c30876dfa 656 #define IS_USART_MODE(__MODE__) ((((__MODE__) & (uint32_t)0xFFFFFFF3) == 0x00) && ((__MODE__) != (uint32_t)0x00))
Kojto 107:4f6c30876dfa 657 #define IS_USART_OVERSAMPLING(__SAMPLING__) (((__SAMPLING__) == USART_OVERSAMPLING_16) || \
Kojto 107:4f6c30876dfa 658 ((__SAMPLING__) == USART_OVERSAMPLING_8))
Kojto 107:4f6c30876dfa 659 #define IS_USART_CLOCK(__CLOCK__) (((__CLOCK__)== USART_CLOCK_DISABLE) || \
Kojto 107:4f6c30876dfa 660 ((__CLOCK__)== USART_CLOCK_ENABLE))
Kojto 107:4f6c30876dfa 661 #define IS_USART_POLARITY(__CPOL__) (((__CPOL__) == USART_POLARITY_LOW) || ((__CPOL__) == USART_POLARITY_HIGH))
Kojto 107:4f6c30876dfa 662 #define IS_USART_PHASE(__CPHA__) (((__CPHA__) == USART_PHASE_1EDGE) || ((__CPHA__) == USART_PHASE_2EDGE))
Kojto 107:4f6c30876dfa 663 #define IS_USART_LASTBIT(__LASTBIT__) (((__LASTBIT__) == USART_LASTBIT_DISABLE) || \
Kojto 107:4f6c30876dfa 664 ((__LASTBIT__) == USART_LASTBIT_ENABLE))
Kojto 107:4f6c30876dfa 665 #define IS_USART_REQUEST_PARAMETER(__PARAM__) (((__PARAM__) == USART_RXDATA_FLUSH_REQUEST) || \
Kojto 107:4f6c30876dfa 666 ((__PARAM__) == USART_TXDATA_FLUSH_REQUEST))
Kojto 107:4f6c30876dfa 667 #define IS_USART_BAUDRATE(__BAUDRATE__) ((__BAUDRATE__) < 9000001)
Kojto 107:4f6c30876dfa 668
Kojto 107:4f6c30876dfa 669 /**
Kojto 107:4f6c30876dfa 670 * @}
Kojto 107:4f6c30876dfa 671 */
Kojto 107:4f6c30876dfa 672
Kojto 107:4f6c30876dfa 673 /* Private functions ---------------------------------------------------------*/
Kojto 107:4f6c30876dfa 674 /** @defgroup USART_Private_Functions USART Private Functions
Kojto 107:4f6c30876dfa 675 * @{
Kojto 107:4f6c30876dfa 676 */
Kojto 107:4f6c30876dfa 677
Kojto 107:4f6c30876dfa 678 /**
Kojto 107:4f6c30876dfa 679 * @}
Kojto 107:4f6c30876dfa 680 */
Kojto 107:4f6c30876dfa 681
Kojto 107:4f6c30876dfa 682 /**
Kojto 107:4f6c30876dfa 683 * @}
Kojto 107:4f6c30876dfa 684 */
Kojto 107:4f6c30876dfa 685
Kojto 107:4f6c30876dfa 686 /**
Kojto 107:4f6c30876dfa 687 * @}
Kojto 107:4f6c30876dfa 688 */
Kojto 107:4f6c30876dfa 689
Kojto 107:4f6c30876dfa 690 #ifdef __cplusplus
Kojto 107:4f6c30876dfa 691 }
Kojto 107:4f6c30876dfa 692 #endif
Kojto 107:4f6c30876dfa 693
Kojto 107:4f6c30876dfa 694 #endif /* __STM32F7xx_HAL_USART_H */
Kojto 107:4f6c30876dfa 695
Kojto 107:4f6c30876dfa 696 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/