mbed official / mbed

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

Committer:
Kojto
Date:
Tue Feb 16 14:28:01 2016 +0000
Revision:
114:252557024ec3
Parent:
112:6f327212ef96
Child:
122:f9eeca106725
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 112:6f327212ef96 1 /**
Kojto 112:6f327212ef96 2 ******************************************************************************
Kojto 112:6f327212ef96 3 * @file stm32f4xx_hal_usart.h
Kojto 112:6f327212ef96 4 * @author MCD Application Team
Kojto 112:6f327212ef96 5 * @version V1.4.1
Kojto 112:6f327212ef96 6 * @date 09-October-2015
Kojto 112:6f327212ef96 7 * @brief Header file of USART HAL module.
Kojto 112:6f327212ef96 8 ******************************************************************************
Kojto 112:6f327212ef96 9 * @attention
Kojto 112:6f327212ef96 10 *
Kojto 112:6f327212ef96 11 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
Kojto 112:6f327212ef96 12 *
Kojto 112:6f327212ef96 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 112:6f327212ef96 14 * are permitted provided that the following conditions are met:
Kojto 112:6f327212ef96 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 112:6f327212ef96 16 * this list of conditions and the following disclaimer.
Kojto 112:6f327212ef96 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 112:6f327212ef96 18 * this list of conditions and the following disclaimer in the documentation
Kojto 112:6f327212ef96 19 * and/or other materials provided with the distribution.
Kojto 112:6f327212ef96 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 112:6f327212ef96 21 * may be used to endorse or promote products derived from this software
Kojto 112:6f327212ef96 22 * without specific prior written permission.
Kojto 112:6f327212ef96 23 *
Kojto 112:6f327212ef96 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 112:6f327212ef96 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 112:6f327212ef96 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 112:6f327212ef96 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 112:6f327212ef96 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 112:6f327212ef96 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 112:6f327212ef96 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 112:6f327212ef96 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 112:6f327212ef96 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 112:6f327212ef96 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 112:6f327212ef96 34 *
Kojto 112:6f327212ef96 35 ******************************************************************************
Kojto 112:6f327212ef96 36 */
Kojto 112:6f327212ef96 37
Kojto 112:6f327212ef96 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 112:6f327212ef96 39 #ifndef __STM32F4xx_HAL_USART_H
Kojto 112:6f327212ef96 40 #define __STM32F4xx_HAL_USART_H
Kojto 112:6f327212ef96 41
Kojto 112:6f327212ef96 42 #ifdef __cplusplus
Kojto 112:6f327212ef96 43 extern "C" {
Kojto 112:6f327212ef96 44 #endif
Kojto 112:6f327212ef96 45
Kojto 112:6f327212ef96 46 /* Includes ------------------------------------------------------------------*/
Kojto 112:6f327212ef96 47 #include "stm32f4xx_hal_def.h"
Kojto 112:6f327212ef96 48
Kojto 112:6f327212ef96 49 /** @addtogroup STM32F4xx_HAL_Driver
Kojto 112:6f327212ef96 50 * @{
Kojto 112:6f327212ef96 51 */
Kojto 112:6f327212ef96 52
Kojto 112:6f327212ef96 53 /** @addtogroup USART
Kojto 112:6f327212ef96 54 * @{
Kojto 112:6f327212ef96 55 */
Kojto 112:6f327212ef96 56
Kojto 112:6f327212ef96 57 /* Exported types ------------------------------------------------------------*/
Kojto 112:6f327212ef96 58 /** @defgroup USART_Exported_Types USART Exported Types
Kojto 112:6f327212ef96 59 * @{
Kojto 112:6f327212ef96 60 */
Kojto 112:6f327212ef96 61
Kojto 112:6f327212ef96 62 /**
Kojto 112:6f327212ef96 63 * @brief USART Init Structure definition
Kojto 112:6f327212ef96 64 */
Kojto 112:6f327212ef96 65 typedef struct
Kojto 112:6f327212ef96 66 {
Kojto 112:6f327212ef96 67 uint32_t BaudRate; /*!< This member configures the Usart communication baud rate.
Kojto 112:6f327212ef96 68 The baud rate is computed using the following formula:
Kojto 112:6f327212ef96 69 - IntegerDivider = ((PCLKx) / (8 * (husart->Init.BaudRate)))
Kojto 112:6f327212ef96 70 - FractionalDivider = ((IntegerDivider - ((uint32_t) IntegerDivider)) * 8) + 0.5 */
Kojto 112:6f327212ef96 71
Kojto 112:6f327212ef96 72 uint32_t WordLength; /*!< Specifies the number of data bits transmitted or received in a frame.
Kojto 112:6f327212ef96 73 This parameter can be a value of @ref USART_Word_Length */
Kojto 112:6f327212ef96 74
Kojto 112:6f327212ef96 75 uint32_t StopBits; /*!< Specifies the number of stop bits transmitted.
Kojto 112:6f327212ef96 76 This parameter can be a value of @ref USART_Stop_Bits */
Kojto 112:6f327212ef96 77
Kojto 112:6f327212ef96 78 uint32_t Parity; /*!< Specifies the parity mode.
Kojto 112:6f327212ef96 79 This parameter can be a value of @ref USART_Parity
Kojto 112:6f327212ef96 80 @note When parity is enabled, the computed parity is inserted
Kojto 112:6f327212ef96 81 at the MSB position of the transmitted data (9th bit when
Kojto 112:6f327212ef96 82 the word length is set to 9 data bits; 8th bit when the
Kojto 112:6f327212ef96 83 word length is set to 8 data bits). */
Kojto 112:6f327212ef96 84
Kojto 112:6f327212ef96 85 uint32_t Mode; /*!< Specifies whether the Receive or Transmit mode is enabled or disabled.
Kojto 112:6f327212ef96 86 This parameter can be a value of @ref USART_Mode */
Kojto 112:6f327212ef96 87
Kojto 112:6f327212ef96 88 uint32_t CLKPolarity; /*!< Specifies the steady state of the serial clock.
Kojto 112:6f327212ef96 89 This parameter can be a value of @ref USART_Clock_Polarity */
Kojto 112:6f327212ef96 90
Kojto 112:6f327212ef96 91 uint32_t CLKPhase; /*!< Specifies the clock transition on which the bit capture is made.
Kojto 112:6f327212ef96 92 This parameter can be a value of @ref USART_Clock_Phase */
Kojto 112:6f327212ef96 93
Kojto 112:6f327212ef96 94 uint32_t CLKLastBit; /*!< Specifies whether the clock pulse corresponding to the last transmitted
Kojto 112:6f327212ef96 95 data bit (MSB) has to be output on the SCLK pin in synchronous mode.
Kojto 112:6f327212ef96 96 This parameter can be a value of @ref USART_Last_Bit */
Kojto 112:6f327212ef96 97 }USART_InitTypeDef;
Kojto 112:6f327212ef96 98
Kojto 112:6f327212ef96 99 /**
Kojto 112:6f327212ef96 100 * @brief HAL State structures definition
Kojto 112:6f327212ef96 101 */
Kojto 112:6f327212ef96 102 typedef enum
Kojto 112:6f327212ef96 103 {
Kojto 112:6f327212ef96 104 HAL_USART_STATE_RESET = 0x00, /*!< Peripheral is not yet Initialized */
Kojto 112:6f327212ef96 105 HAL_USART_STATE_READY = 0x01, /*!< Peripheral Initialized and ready for use */
Kojto 112:6f327212ef96 106 HAL_USART_STATE_BUSY = 0x02, /*!< an internal process is ongoing */
Kojto 112:6f327212ef96 107 HAL_USART_STATE_BUSY_TX = 0x12, /*!< Data Transmission process is ongoing */
Kojto 112:6f327212ef96 108 HAL_USART_STATE_BUSY_RX = 0x22, /*!< Data Reception process is ongoing */
Kojto 112:6f327212ef96 109 HAL_USART_STATE_BUSY_TX_RX = 0x32, /*!< Data Transmission Reception process is ongoing */
Kojto 112:6f327212ef96 110 HAL_USART_STATE_TIMEOUT = 0x03, /*!< Timeout state */
Kojto 112:6f327212ef96 111 HAL_USART_STATE_ERROR = 0x04 /*!< Error */
Kojto 112:6f327212ef96 112 }HAL_USART_StateTypeDef;
Kojto 112:6f327212ef96 113
Kojto 112:6f327212ef96 114 /**
Kojto 112:6f327212ef96 115 * @brief USART handle Structure definition
Kojto 112:6f327212ef96 116 */
Kojto 112:6f327212ef96 117 typedef struct
Kojto 112:6f327212ef96 118 {
Kojto 112:6f327212ef96 119 USART_TypeDef *Instance; /* USART registers base address */
Kojto 112:6f327212ef96 120
Kojto 112:6f327212ef96 121 USART_InitTypeDef Init; /* Usart communication parameters */
Kojto 112:6f327212ef96 122
Kojto 112:6f327212ef96 123 uint8_t *pTxBuffPtr; /* Pointer to Usart Tx transfer Buffer */
Kojto 112:6f327212ef96 124
Kojto 112:6f327212ef96 125 uint16_t TxXferSize; /* Usart Tx Transfer size */
Kojto 112:6f327212ef96 126
Kojto 112:6f327212ef96 127 __IO uint16_t TxXferCount; /* Usart Tx Transfer Counter */
Kojto 112:6f327212ef96 128
Kojto 112:6f327212ef96 129 uint8_t *pRxBuffPtr; /* Pointer to Usart Rx transfer Buffer */
Kojto 112:6f327212ef96 130
Kojto 112:6f327212ef96 131 uint16_t RxXferSize; /* Usart Rx Transfer size */
Kojto 112:6f327212ef96 132
Kojto 112:6f327212ef96 133 __IO uint16_t RxXferCount; /* Usart Rx Transfer Counter */
Kojto 112:6f327212ef96 134
Kojto 112:6f327212ef96 135 DMA_HandleTypeDef *hdmatx; /* Usart Tx DMA Handle parameters */
Kojto 112:6f327212ef96 136
Kojto 112:6f327212ef96 137 DMA_HandleTypeDef *hdmarx; /* Usart Rx DMA Handle parameters */
Kojto 112:6f327212ef96 138
Kojto 112:6f327212ef96 139 HAL_LockTypeDef Lock; /* Locking object */
Kojto 112:6f327212ef96 140
Kojto 112:6f327212ef96 141 __IO HAL_USART_StateTypeDef State; /* Usart communication state */
Kojto 112:6f327212ef96 142
Kojto 112:6f327212ef96 143 __IO uint32_t ErrorCode; /* USART Error code */
Kojto 112:6f327212ef96 144
Kojto 112:6f327212ef96 145 }USART_HandleTypeDef;
Kojto 112:6f327212ef96 146 /**
Kojto 112:6f327212ef96 147 * @}
Kojto 112:6f327212ef96 148 */
Kojto 112:6f327212ef96 149
Kojto 112:6f327212ef96 150 /* Exported constants --------------------------------------------------------*/
Kojto 112:6f327212ef96 151 /** @defgroup USART_Exported_Constants USART Exported Constants
Kojto 112:6f327212ef96 152 * @{
Kojto 112:6f327212ef96 153 */
Kojto 112:6f327212ef96 154
Kojto 112:6f327212ef96 155 /** @defgroup USART_Error_Code USART Error Code
Kojto 112:6f327212ef96 156 * @brief USART Error Code
Kojto 112:6f327212ef96 157 * @{
Kojto 112:6f327212ef96 158 */
Kojto 112:6f327212ef96 159 #define HAL_USART_ERROR_NONE ((uint32_t)0x00000000) /*!< No error */
Kojto 112:6f327212ef96 160 #define HAL_USART_ERROR_PE ((uint32_t)0x00000001) /*!< Parity error */
Kojto 112:6f327212ef96 161 #define HAL_USART_ERROR_NE ((uint32_t)0x00000002) /*!< Noise error */
Kojto 112:6f327212ef96 162 #define HAL_USART_ERROR_FE ((uint32_t)0x00000004) /*!< Frame error */
Kojto 112:6f327212ef96 163 #define HAL_USART_ERROR_ORE ((uint32_t)0x00000008) /*!< Overrun error */
Kojto 112:6f327212ef96 164 #define HAL_USART_ERROR_DMA ((uint32_t)0x00000010) /*!< DMA transfer error */
Kojto 112:6f327212ef96 165 /**
Kojto 112:6f327212ef96 166 * @}
Kojto 112:6f327212ef96 167 */
Kojto 112:6f327212ef96 168
Kojto 112:6f327212ef96 169 /** @defgroup USART_Word_Length USART Word Length
Kojto 112:6f327212ef96 170 * @{
Kojto 112:6f327212ef96 171 */
Kojto 112:6f327212ef96 172 #define USART_WORDLENGTH_8B ((uint32_t)0x00000000)
Kojto 112:6f327212ef96 173 #define USART_WORDLENGTH_9B ((uint32_t)USART_CR1_M)
Kojto 112:6f327212ef96 174 /**
Kojto 112:6f327212ef96 175 * @}
Kojto 112:6f327212ef96 176 */
Kojto 112:6f327212ef96 177
Kojto 112:6f327212ef96 178 /** @defgroup USART_Stop_Bits USART Number of Stop Bits
Kojto 112:6f327212ef96 179 * @{
Kojto 112:6f327212ef96 180 */
Kojto 112:6f327212ef96 181 #define USART_STOPBITS_1 ((uint32_t)0x00000000)
Kojto 112:6f327212ef96 182 #define USART_STOPBITS_0_5 ((uint32_t)USART_CR2_STOP_0)
Kojto 112:6f327212ef96 183 #define USART_STOPBITS_2 ((uint32_t)USART_CR2_STOP_1)
Kojto 112:6f327212ef96 184 #define USART_STOPBITS_1_5 ((uint32_t)(USART_CR2_STOP_0 | USART_CR2_STOP_1))
Kojto 112:6f327212ef96 185 /**
Kojto 112:6f327212ef96 186 * @}
Kojto 112:6f327212ef96 187 */
Kojto 112:6f327212ef96 188
Kojto 112:6f327212ef96 189 /** @defgroup USART_Parity USART Parity
Kojto 112:6f327212ef96 190 * @{
Kojto 112:6f327212ef96 191 */
Kojto 112:6f327212ef96 192 #define USART_PARITY_NONE ((uint32_t)0x00000000)
Kojto 112:6f327212ef96 193 #define USART_PARITY_EVEN ((uint32_t)USART_CR1_PCE)
Kojto 112:6f327212ef96 194 #define USART_PARITY_ODD ((uint32_t)(USART_CR1_PCE | USART_CR1_PS))
Kojto 112:6f327212ef96 195 /**
Kojto 112:6f327212ef96 196 * @}
Kojto 112:6f327212ef96 197 */
Kojto 112:6f327212ef96 198
Kojto 112:6f327212ef96 199 /** @defgroup USART_Mode USART Mode
Kojto 112:6f327212ef96 200 * @{
Kojto 112:6f327212ef96 201 */
Kojto 112:6f327212ef96 202 #define USART_MODE_RX ((uint32_t)USART_CR1_RE)
Kojto 112:6f327212ef96 203 #define USART_MODE_TX ((uint32_t)USART_CR1_TE)
Kojto 112:6f327212ef96 204 #define USART_MODE_TX_RX ((uint32_t)(USART_CR1_TE |USART_CR1_RE))
Kojto 112:6f327212ef96 205 /**
Kojto 112:6f327212ef96 206 * @}
Kojto 112:6f327212ef96 207 */
Kojto 112:6f327212ef96 208
Kojto 112:6f327212ef96 209 /** @defgroup USART_Clock USART Clock
Kojto 112:6f327212ef96 210 * @{
Kojto 112:6f327212ef96 211 */
Kojto 112:6f327212ef96 212 #define USART_CLOCK_DISABLE ((uint32_t)0x00000000)
Kojto 112:6f327212ef96 213 #define USART_CLOCK_ENABLE ((uint32_t)USART_CR2_CLKEN)
Kojto 112:6f327212ef96 214 /**
Kojto 112:6f327212ef96 215 * @}
Kojto 112:6f327212ef96 216 */
Kojto 112:6f327212ef96 217
Kojto 112:6f327212ef96 218 /** @defgroup USART_Clock_Polarity USART Clock Polarity
Kojto 112:6f327212ef96 219 * @{
Kojto 112:6f327212ef96 220 */
Kojto 112:6f327212ef96 221 #define USART_POLARITY_LOW ((uint32_t)0x00000000)
Kojto 112:6f327212ef96 222 #define USART_POLARITY_HIGH ((uint32_t)USART_CR2_CPOL)
Kojto 112:6f327212ef96 223 /**
Kojto 112:6f327212ef96 224 * @}
Kojto 112:6f327212ef96 225 */
Kojto 112:6f327212ef96 226
Kojto 112:6f327212ef96 227 /** @defgroup USART_Clock_Phase USART Clock Phase
Kojto 112:6f327212ef96 228 * @{
Kojto 112:6f327212ef96 229 */
Kojto 112:6f327212ef96 230 #define USART_PHASE_1EDGE ((uint32_t)0x00000000)
Kojto 112:6f327212ef96 231 #define USART_PHASE_2EDGE ((uint32_t)USART_CR2_CPHA)
Kojto 112:6f327212ef96 232 /**
Kojto 112:6f327212ef96 233 * @}
Kojto 112:6f327212ef96 234 */
Kojto 112:6f327212ef96 235
Kojto 112:6f327212ef96 236 /** @defgroup USART_Last_Bit USART Last Bit
Kojto 112:6f327212ef96 237 * @{
Kojto 112:6f327212ef96 238 */
Kojto 112:6f327212ef96 239 #define USART_LASTBIT_DISABLE ((uint32_t)0x00000000)
Kojto 112:6f327212ef96 240 #define USART_LASTBIT_ENABLE ((uint32_t)USART_CR2_LBCL)
Kojto 112:6f327212ef96 241 /**
Kojto 112:6f327212ef96 242 * @}
Kojto 112:6f327212ef96 243 */
Kojto 112:6f327212ef96 244
Kojto 112:6f327212ef96 245 /** @defgroup USART_NACK_State USART NACK State
Kojto 112:6f327212ef96 246 * @{
Kojto 112:6f327212ef96 247 */
Kojto 112:6f327212ef96 248 #define USART_NACK_ENABLE ((uint32_t)USART_CR3_NACK)
Kojto 112:6f327212ef96 249 #define USART_NACK_DISABLE ((uint32_t)0x00000000)
Kojto 112:6f327212ef96 250 /**
Kojto 112:6f327212ef96 251 * @}
Kojto 112:6f327212ef96 252 */
Kojto 112:6f327212ef96 253
Kojto 112:6f327212ef96 254 /** @defgroup USART_Flags USART Flags
Kojto 112:6f327212ef96 255 * Elements values convention: 0xXXXX
Kojto 112:6f327212ef96 256 * - 0xXXXX : Flag mask in the SR register
Kojto 112:6f327212ef96 257 * @{
Kojto 112:6f327212ef96 258 */
Kojto 112:6f327212ef96 259 #define USART_FLAG_TXE ((uint32_t)0x00000080)
Kojto 112:6f327212ef96 260 #define USART_FLAG_TC ((uint32_t)0x00000040)
Kojto 112:6f327212ef96 261 #define USART_FLAG_RXNE ((uint32_t)0x00000020)
Kojto 112:6f327212ef96 262 #define USART_FLAG_IDLE ((uint32_t)0x00000010)
Kojto 112:6f327212ef96 263 #define USART_FLAG_ORE ((uint32_t)0x00000008)
Kojto 112:6f327212ef96 264 #define USART_FLAG_NE ((uint32_t)0x00000004)
Kojto 112:6f327212ef96 265 #define USART_FLAG_FE ((uint32_t)0x00000002)
Kojto 112:6f327212ef96 266 #define USART_FLAG_PE ((uint32_t)0x00000001)
Kojto 112:6f327212ef96 267 /**
Kojto 112:6f327212ef96 268 * @}
Kojto 112:6f327212ef96 269 */
Kojto 112:6f327212ef96 270
Kojto 112:6f327212ef96 271 /** @defgroup USART_Interrupt_definition USART Interrupts Definition
Kojto 112:6f327212ef96 272 * Elements values convention: 0xY000XXXX
Kojto 112:6f327212ef96 273 * - XXXX : Interrupt mask in the XX register
Kojto 112:6f327212ef96 274 * - Y : Interrupt source register (2bits)
Kojto 112:6f327212ef96 275 * - 01: CR1 register
Kojto 112:6f327212ef96 276 * - 10: CR2 register
Kojto 112:6f327212ef96 277 * - 11: CR3 register
Kojto 112:6f327212ef96 278 *
Kojto 112:6f327212ef96 279 * @{
Kojto 112:6f327212ef96 280 */
Kojto 112:6f327212ef96 281 #define USART_IT_PE ((uint32_t)(USART_CR1_REG_INDEX << 28 | USART_CR1_PEIE))
Kojto 112:6f327212ef96 282 #define USART_IT_TXE ((uint32_t)(USART_CR1_REG_INDEX << 28 | USART_CR1_TXEIE))
Kojto 112:6f327212ef96 283 #define USART_IT_TC ((uint32_t)(USART_CR1_REG_INDEX << 28 | USART_CR1_TCIE))
Kojto 112:6f327212ef96 284 #define USART_IT_RXNE ((uint32_t)(USART_CR1_REG_INDEX << 28 | USART_CR1_RXNEIE))
Kojto 112:6f327212ef96 285 #define USART_IT_IDLE ((uint32_t)(USART_CR1_REG_INDEX << 28 | USART_CR1_IDLEIE))
Kojto 112:6f327212ef96 286
Kojto 112:6f327212ef96 287 #define USART_IT_LBD ((uint32_t)(USART_CR2_REG_INDEX << 28 | USART_CR2_LBDIE))
Kojto 112:6f327212ef96 288
Kojto 112:6f327212ef96 289 #define USART_IT_CTS ((uint32_t)(USART_CR3_REG_INDEX << 28 | USART_CR3_CTSIE))
Kojto 112:6f327212ef96 290 #define USART_IT_ERR ((uint32_t)(USART_CR3_REG_INDEX << 28 | USART_CR3_EIE))
Kojto 112:6f327212ef96 291 /**
Kojto 112:6f327212ef96 292 * @}
Kojto 112:6f327212ef96 293 */
Kojto 112:6f327212ef96 294
Kojto 112:6f327212ef96 295 /**
Kojto 112:6f327212ef96 296 * @}
Kojto 112:6f327212ef96 297 */
Kojto 112:6f327212ef96 298
Kojto 112:6f327212ef96 299 /* Exported macro ------------------------------------------------------------*/
Kojto 112:6f327212ef96 300 /** @defgroup USART_Exported_Macros USART Exported Macros
Kojto 112:6f327212ef96 301 * @{
Kojto 112:6f327212ef96 302 */
Kojto 112:6f327212ef96 303
Kojto 112:6f327212ef96 304 /** @brief Reset USART handle state
Kojto 112:6f327212ef96 305 * @param __HANDLE__: specifies the USART Handle.
Kojto 112:6f327212ef96 306 * This parameter can be USARTx where x: 1, 2, 3 or 6 to select the USART peripheral.
Kojto 112:6f327212ef96 307 * @retval None
Kojto 112:6f327212ef96 308 */
Kojto 112:6f327212ef96 309 #define __HAL_USART_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_USART_STATE_RESET)
Kojto 112:6f327212ef96 310
Kojto 112:6f327212ef96 311 /** @brief Checks whether the specified Smartcard flag is set or not.
Kojto 112:6f327212ef96 312 * @param __HANDLE__: specifies the USART Handle.
Kojto 112:6f327212ef96 313 * This parameter can be USARTx where x: 1, 2, 3 or 6 to select the USART peripheral.
Kojto 112:6f327212ef96 314 * @param __FLAG__: specifies the flag to check.
Kojto 112:6f327212ef96 315 * This parameter can be one of the following values:
Kojto 112:6f327212ef96 316 * @arg USART_FLAG_TXE: Transmit data register empty flag
Kojto 112:6f327212ef96 317 * @arg USART_FLAG_TC: Transmission Complete flag
Kojto 112:6f327212ef96 318 * @arg USART_FLAG_RXNE: Receive data register not empty flag
Kojto 112:6f327212ef96 319 * @arg USART_FLAG_IDLE: Idle Line detection flag
Kojto 112:6f327212ef96 320 * @arg USART_FLAG_ORE: Overrun Error flag
Kojto 112:6f327212ef96 321 * @arg USART_FLAG_NE: Noise Error flag
Kojto 112:6f327212ef96 322 * @arg USART_FLAG_FE: Framing Error flag
Kojto 112:6f327212ef96 323 * @arg USART_FLAG_PE: Parity Error flag
Kojto 112:6f327212ef96 324 * @retval The new state of __FLAG__ (TRUE or FALSE).
Kojto 112:6f327212ef96 325 */
Kojto 112:6f327212ef96 326 #define __HAL_USART_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->SR & (__FLAG__)) == (__FLAG__))
Kojto 112:6f327212ef96 327
Kojto 112:6f327212ef96 328 /** @brief Clears the specified Smartcard pending flags.
Kojto 112:6f327212ef96 329 * @param __HANDLE__: specifies the USART Handle.
Kojto 112:6f327212ef96 330 * This parameter can be USARTx where x: 1, 2, 3 or 6 to select the USART peripheral.
Kojto 112:6f327212ef96 331 * @param __FLAG__: specifies the flag to check.
Kojto 112:6f327212ef96 332 * This parameter can be any combination of the following values:
Kojto 112:6f327212ef96 333 * @arg USART_FLAG_TC: Transmission Complete flag.
Kojto 112:6f327212ef96 334 * @arg USART_FLAG_RXNE: Receive data register not empty flag.
Kojto 112:6f327212ef96 335 *
Kojto 112:6f327212ef96 336 * @note PE (Parity error), FE (Framing error), NE (Noise error), ORE (Overrun
Kojto 112:6f327212ef96 337 * error) and IDLE (Idle line detected) flags are cleared by software
Kojto 112:6f327212ef96 338 * sequence: a read operation to USART_SR register followed by a read
Kojto 112:6f327212ef96 339 * operation to USART_DR register.
Kojto 112:6f327212ef96 340 * @note RXNE flag can be also cleared by a read to the USART_DR register.
Kojto 112:6f327212ef96 341 * @note TC flag can be also cleared by software sequence: a read operation to
Kojto 112:6f327212ef96 342 * USART_SR register followed by a write operation to USART_DR register.
Kojto 112:6f327212ef96 343 * @note TXE flag is cleared only by a write to the USART_DR register.
Kojto 112:6f327212ef96 344 *
Kojto 112:6f327212ef96 345 * @retval None
Kojto 112:6f327212ef96 346 */
Kojto 112:6f327212ef96 347 #define __HAL_USART_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->SR = ~(__FLAG__))
Kojto 112:6f327212ef96 348
Kojto 112:6f327212ef96 349 /** @brief Clear the USART PE pending flag.
Kojto 112:6f327212ef96 350 * @param __HANDLE__: specifies the USART Handle.
Kojto 112:6f327212ef96 351 * This parameter can be USARTx where x: 1, 2, 3 or 6 to select the USART peripheral.
Kojto 112:6f327212ef96 352 * @retval None
Kojto 112:6f327212ef96 353 */
Kojto 112:6f327212ef96 354 #define __HAL_USART_CLEAR_PEFLAG(__HANDLE__) \
Kojto 112:6f327212ef96 355 do{ \
Kojto 112:6f327212ef96 356 __IO uint32_t tmpreg; \
Kojto 112:6f327212ef96 357 tmpreg = (__HANDLE__)->Instance->SR; \
Kojto 112:6f327212ef96 358 tmpreg = (__HANDLE__)->Instance->DR; \
Kojto 112:6f327212ef96 359 UNUSED(tmpreg); \
Kojto 112:6f327212ef96 360 } while(0)
Kojto 112:6f327212ef96 361
Kojto 112:6f327212ef96 362 /** @brief Clear the USART FE pending flag.
Kojto 112:6f327212ef96 363 * @param __HANDLE__: specifies the USART Handle.
Kojto 112:6f327212ef96 364 * This parameter can be USARTx where x: 1, 2, 3 or 6 to select the USART peripheral.
Kojto 112:6f327212ef96 365 * @retval None
Kojto 112:6f327212ef96 366 */
Kojto 112:6f327212ef96 367 #define __HAL_USART_CLEAR_FEFLAG(__HANDLE__) __HAL_USART_CLEAR_PEFLAG(__HANDLE__)
Kojto 112:6f327212ef96 368
Kojto 112:6f327212ef96 369 /** @brief Clear the USART NE pending flag.
Kojto 112:6f327212ef96 370 * @param __HANDLE__: specifies the USART Handle.
Kojto 112:6f327212ef96 371 * This parameter can be USARTx where x: 1, 2, 3 or 6 to select the USART peripheral.
Kojto 112:6f327212ef96 372 * @retval None
Kojto 112:6f327212ef96 373 */
Kojto 112:6f327212ef96 374 #define __HAL_USART_CLEAR_NEFLAG(__HANDLE__) __HAL_USART_CLEAR_PEFLAG(__HANDLE__)
Kojto 112:6f327212ef96 375
Kojto 112:6f327212ef96 376 /** @brief Clear the UART ORE pending flag.
Kojto 112:6f327212ef96 377 * @param __HANDLE__: specifies the USART Handle.
Kojto 112:6f327212ef96 378 * This parameter can be USARTx where x: 1, 2, 3 or 6 to select the USART peripheral.
Kojto 112:6f327212ef96 379 * @retval None
Kojto 112:6f327212ef96 380 */
Kojto 112:6f327212ef96 381 #define __HAL_USART_CLEAR_OREFLAG(__HANDLE__) __HAL_USART_CLEAR_PEFLAG(__HANDLE__)
Kojto 112:6f327212ef96 382
Kojto 112:6f327212ef96 383 /** @brief Clear the USART IDLE pending flag.
Kojto 112:6f327212ef96 384 * @param __HANDLE__: specifies the USART Handle.
Kojto 112:6f327212ef96 385 * This parameter can be USARTx where x: 1, 2, 3 or 6 to select the USART peripheral.
Kojto 112:6f327212ef96 386 * @retval None
Kojto 112:6f327212ef96 387 */
Kojto 112:6f327212ef96 388 #define __HAL_USART_CLEAR_IDLEFLAG(__HANDLE__) __HAL_USART_CLEAR_PEFLAG(__HANDLE__)
Kojto 112:6f327212ef96 389
Kojto 112:6f327212ef96 390 /** @brief Enables or disables the specified USART interrupts.
Kojto 112:6f327212ef96 391 * @param __HANDLE__: specifies the USART Handle.
Kojto 112:6f327212ef96 392 * This parameter can be USARTx where x: 1, 2, 3 or 6 to select the USART peripheral.
Kojto 112:6f327212ef96 393 * @param __INTERRUPT__: specifies the USART interrupt source to check.
Kojto 112:6f327212ef96 394 * This parameter can be one of the following values:
Kojto 112:6f327212ef96 395 * @arg USART_IT_TXE: Transmit Data Register empty interrupt
Kojto 112:6f327212ef96 396 * @arg USART_IT_TC: Transmission complete interrupt
Kojto 112:6f327212ef96 397 * @arg USART_IT_RXNE: Receive Data register not empty interrupt
Kojto 112:6f327212ef96 398 * @arg USART_IT_IDLE: Idle line detection interrupt
Kojto 112:6f327212ef96 399 * @arg USART_IT_PE: Parity Error interrupt
Kojto 112:6f327212ef96 400 * @arg USART_IT_ERR: Error interrupt(Frame error, noise error, overrun error)
Kojto 112:6f327212ef96 401 * This parameter can be: ENABLE or DISABLE.
Kojto 112:6f327212ef96 402 * @retval None
Kojto 112:6f327212ef96 403 */
Kojto 112:6f327212ef96 404 #define __HAL_USART_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((((__INTERRUPT__) >> 28) == 1)? ((__HANDLE__)->Instance->CR1 |= ((__INTERRUPT__) & USART_IT_MASK)): \
Kojto 112:6f327212ef96 405 (((__INTERRUPT__) >> 28) == 2)? ((__HANDLE__)->Instance->CR2 |= ((__INTERRUPT__) & USART_IT_MASK)): \
Kojto 112:6f327212ef96 406 ((__HANDLE__)->Instance->CR3 |= ((__INTERRUPT__) & USART_IT_MASK)))
Kojto 112:6f327212ef96 407 #define __HAL_USART_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((((__INTERRUPT__) >> 28) == 1)? ((__HANDLE__)->Instance->CR1 &= ~((__INTERRUPT__) & USART_IT_MASK)): \
Kojto 112:6f327212ef96 408 (((__INTERRUPT__) >> 28) == 2)? ((__HANDLE__)->Instance->CR2 &= ~((__INTERRUPT__) & USART_IT_MASK)): \
Kojto 112:6f327212ef96 409 ((__HANDLE__)->Instance->CR3 &= ~ ((__INTERRUPT__) & USART_IT_MASK)))
Kojto 112:6f327212ef96 410
Kojto 112:6f327212ef96 411 /** @brief Checks whether the specified USART interrupt has occurred or not.
Kojto 112:6f327212ef96 412 * @param __HANDLE__: specifies the USART Handle.
Kojto 112:6f327212ef96 413 * This parameter can be USARTx where x: 1, 2, 3 or 6 to select the USART peripheral.
Kojto 112:6f327212ef96 414 * @param __IT__: specifies the USART interrupt source to check.
Kojto 112:6f327212ef96 415 * This parameter can be one of the following values:
Kojto 112:6f327212ef96 416 * @arg USART_IT_TXE: Transmit Data Register empty interrupt
Kojto 112:6f327212ef96 417 * @arg USART_IT_TC: Transmission complete interrupt
Kojto 112:6f327212ef96 418 * @arg USART_IT_RXNE: Receive Data register not empty interrupt
Kojto 112:6f327212ef96 419 * @arg USART_IT_IDLE: Idle line detection interrupt
Kojto 112:6f327212ef96 420 * @arg USART_IT_ERR: Error interrupt
Kojto 112:6f327212ef96 421 * @arg USART_IT_PE: Parity Error interrupt
Kojto 112:6f327212ef96 422 * @retval The new state of __IT__ (TRUE or FALSE).
Kojto 112:6f327212ef96 423 */
Kojto 112:6f327212ef96 424 #define __HAL_USART_GET_IT_SOURCE(__HANDLE__, __IT__) (((((__IT__) >> 28) == 1)? (__HANDLE__)->Instance->CR1:(((((uint32_t)(__IT__)) >> 28) == 2)? \
Kojto 112:6f327212ef96 425 (__HANDLE__)->Instance->CR2 : (__HANDLE__)->Instance->CR3)) & (((uint32_t)(__IT__)) & USART_IT_MASK))
Kojto 112:6f327212ef96 426
Kojto 112:6f327212ef96 427 /** @brief Macro to enable the USART's one bit sample method
Kojto 112:6f327212ef96 428 * @param __HANDLE__: specifies the USART Handle.
Kojto 112:6f327212ef96 429 * @retval None
Kojto 112:6f327212ef96 430 */
Kojto 112:6f327212ef96 431 #define __HAL_USART_ONE_BIT_SAMPLE_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3|= USART_CR3_ONEBIT)
Kojto 112:6f327212ef96 432
Kojto 112:6f327212ef96 433 /** @brief Macro to disable the USART's one bit sample method
Kojto 112:6f327212ef96 434 * @param __HANDLE__: specifies the USART Handle.
Kojto 112:6f327212ef96 435 * @retval None
Kojto 112:6f327212ef96 436 */
Kojto 112:6f327212ef96 437 #define __HAL_USART_ONE_BIT_SAMPLE_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3 &= (uint16_t)~((uint16_t)USART_CR3_ONEBIT))
Kojto 112:6f327212ef96 438
Kojto 112:6f327212ef96 439 /** @brief Enable USART
Kojto 112:6f327212ef96 440 * @param __HANDLE__: specifies the USART Handle.
Kojto 112:6f327212ef96 441 * USART Handle selects the USARTx peripheral (USART availability and x value depending on device).
Kojto 112:6f327212ef96 442 * @retval None
Kojto 112:6f327212ef96 443 */
Kojto 112:6f327212ef96 444 #define __HAL_USART_ENABLE(__HANDLE__) ( (__HANDLE__)->Instance->CR1 |= USART_CR1_UE)
Kojto 112:6f327212ef96 445
Kojto 112:6f327212ef96 446 /** @brief Disable USART
Kojto 112:6f327212ef96 447 * @param __HANDLE__: specifies the USART Handle.
Kojto 112:6f327212ef96 448 * USART Handle selects the USARTx peripheral (USART availability and x value depending on device).
Kojto 112:6f327212ef96 449 * @retval None
Kojto 112:6f327212ef96 450 */
Kojto 112:6f327212ef96 451 #define __HAL_USART_DISABLE(__HANDLE__) ( (__HANDLE__)->Instance->CR1 &= ~USART_CR1_UE)
Kojto 112:6f327212ef96 452
Kojto 112:6f327212ef96 453 /**
Kojto 112:6f327212ef96 454 * @}
Kojto 112:6f327212ef96 455 */
Kojto 112:6f327212ef96 456 /* Exported functions --------------------------------------------------------*/
Kojto 112:6f327212ef96 457 /** @addtogroup USART_Exported_Functions
Kojto 112:6f327212ef96 458 * @{
Kojto 112:6f327212ef96 459 */
Kojto 112:6f327212ef96 460
Kojto 112:6f327212ef96 461 /** @addtogroup USART_Exported_Functions_Group1
Kojto 112:6f327212ef96 462 * @{
Kojto 112:6f327212ef96 463 */
Kojto 112:6f327212ef96 464 /* Initialization/de-initialization functions **********************************/
Kojto 112:6f327212ef96 465 HAL_StatusTypeDef HAL_USART_Init(USART_HandleTypeDef *husart);
Kojto 112:6f327212ef96 466 HAL_StatusTypeDef HAL_USART_DeInit(USART_HandleTypeDef *husart);
Kojto 112:6f327212ef96 467 void HAL_USART_MspInit(USART_HandleTypeDef *husart);
Kojto 112:6f327212ef96 468 void HAL_USART_MspDeInit(USART_HandleTypeDef *husart);
Kojto 112:6f327212ef96 469 /**
Kojto 112:6f327212ef96 470 * @}
Kojto 112:6f327212ef96 471 */
Kojto 112:6f327212ef96 472
Kojto 112:6f327212ef96 473 /** @addtogroup USART_Exported_Functions_Group2
Kojto 112:6f327212ef96 474 * @{
Kojto 112:6f327212ef96 475 */
Kojto 112:6f327212ef96 476 /* IO operation functions *******************************************************/
Kojto 112:6f327212ef96 477 HAL_StatusTypeDef HAL_USART_Transmit(USART_HandleTypeDef *husart, uint8_t *pTxData, uint16_t Size, uint32_t Timeout);
Kojto 112:6f327212ef96 478 HAL_StatusTypeDef HAL_USART_Receive(USART_HandleTypeDef *husart, uint8_t *pRxData, uint16_t Size, uint32_t Timeout);
Kojto 112:6f327212ef96 479 HAL_StatusTypeDef HAL_USART_TransmitReceive(USART_HandleTypeDef *husart, uint8_t *pTxData, uint8_t *pRxData, uint16_t Size, uint32_t Timeout);
Kojto 112:6f327212ef96 480 HAL_StatusTypeDef HAL_USART_Transmit_IT(USART_HandleTypeDef *husart, uint8_t *pTxData, uint16_t Size);
Kojto 112:6f327212ef96 481 HAL_StatusTypeDef HAL_USART_Receive_IT(USART_HandleTypeDef *husart, uint8_t *pRxData, uint16_t Size);
Kojto 112:6f327212ef96 482 HAL_StatusTypeDef HAL_USART_TransmitReceive_IT(USART_HandleTypeDef *husart, uint8_t *pTxData, uint8_t *pRxData, uint16_t Size);
Kojto 112:6f327212ef96 483 HAL_StatusTypeDef HAL_USART_Transmit_DMA(USART_HandleTypeDef *husart, uint8_t *pTxData, uint16_t Size);
Kojto 112:6f327212ef96 484 HAL_StatusTypeDef HAL_USART_Receive_DMA(USART_HandleTypeDef *husart, uint8_t *pRxData, uint16_t Size);
Kojto 112:6f327212ef96 485 HAL_StatusTypeDef HAL_USART_TransmitReceive_DMA(USART_HandleTypeDef *husart, uint8_t *pTxData, uint8_t *pRxData, uint16_t Size);
Kojto 112:6f327212ef96 486 HAL_StatusTypeDef HAL_USART_DMAPause(USART_HandleTypeDef *husart);
Kojto 112:6f327212ef96 487 HAL_StatusTypeDef HAL_USART_DMAResume(USART_HandleTypeDef *husart);
Kojto 112:6f327212ef96 488 HAL_StatusTypeDef HAL_USART_DMAStop(USART_HandleTypeDef *husart);
Kojto 112:6f327212ef96 489 void HAL_USART_IRQHandler(USART_HandleTypeDef *husart);
Kojto 112:6f327212ef96 490 void HAL_USART_TxCpltCallback(USART_HandleTypeDef *husart);
Kojto 112:6f327212ef96 491 void HAL_USART_TxHalfCpltCallback(USART_HandleTypeDef *husart);
Kojto 112:6f327212ef96 492 void HAL_USART_RxCpltCallback(USART_HandleTypeDef *husart);
Kojto 112:6f327212ef96 493 void HAL_USART_RxHalfCpltCallback(USART_HandleTypeDef *husart);
Kojto 112:6f327212ef96 494 void HAL_USART_TxRxCpltCallback(USART_HandleTypeDef *husart);
Kojto 112:6f327212ef96 495 void HAL_USART_ErrorCallback(USART_HandleTypeDef *husart);
Kojto 112:6f327212ef96 496 /**
Kojto 112:6f327212ef96 497 * @}
Kojto 112:6f327212ef96 498 */
Kojto 112:6f327212ef96 499
Kojto 112:6f327212ef96 500 /** @addtogroup USART_Exported_Functions_Group3
Kojto 112:6f327212ef96 501 * @{
Kojto 112:6f327212ef96 502 */
Kojto 112:6f327212ef96 503 /* Peripheral State functions ************************************************/
Kojto 112:6f327212ef96 504 HAL_USART_StateTypeDef HAL_USART_GetState(USART_HandleTypeDef *husart);
Kojto 112:6f327212ef96 505 uint32_t HAL_USART_GetError(USART_HandleTypeDef *husart);
Kojto 112:6f327212ef96 506 /**
Kojto 112:6f327212ef96 507 * @}
Kojto 112:6f327212ef96 508 */
Kojto 112:6f327212ef96 509
Kojto 112:6f327212ef96 510 /**
Kojto 112:6f327212ef96 511 * @}
Kojto 112:6f327212ef96 512 */
Kojto 112:6f327212ef96 513 /* Private types -------------------------------------------------------------*/
Kojto 112:6f327212ef96 514 /* Private variables ---------------------------------------------------------*/
Kojto 112:6f327212ef96 515 /* Private constants ---------------------------------------------------------*/
Kojto 112:6f327212ef96 516 /** @defgroup USART_Private_Constants USART Private Constants
Kojto 112:6f327212ef96 517 * @{
Kojto 112:6f327212ef96 518 */
Kojto 112:6f327212ef96 519 /** @brief USART interruptions flag mask
Kojto 112:6f327212ef96 520 *
Kojto 112:6f327212ef96 521 */
Kojto 112:6f327212ef96 522 #define USART_IT_MASK ((uint32_t) USART_CR1_PEIE | USART_CR1_TXEIE | USART_CR1_TCIE | USART_CR1_RXNEIE | \
Kojto 112:6f327212ef96 523 USART_CR1_IDLEIE | USART_CR2_LBDIE | USART_CR3_CTSIE | USART_CR3_EIE )
Kojto 112:6f327212ef96 524
Kojto 112:6f327212ef96 525
Kojto 112:6f327212ef96 526 #define USART_CR1_REG_INDEX 1
Kojto 112:6f327212ef96 527 #define USART_CR2_REG_INDEX 2
Kojto 112:6f327212ef96 528 #define USART_CR3_REG_INDEX 3
Kojto 112:6f327212ef96 529 /**
Kojto 112:6f327212ef96 530 * @}
Kojto 112:6f327212ef96 531 */
Kojto 112:6f327212ef96 532
Kojto 112:6f327212ef96 533 /* Private macros ------------------------------------------------------------*/
Kojto 112:6f327212ef96 534 /** @defgroup USART_Private_Macros USART Private Macros
Kojto 112:6f327212ef96 535 * @{
Kojto 112:6f327212ef96 536 */
Kojto 112:6f327212ef96 537 #define IS_USART_NACK_STATE(NACK) (((NACK) == USART_NACK_ENABLE) || \
Kojto 112:6f327212ef96 538 ((NACK) == USART_NACK_DISABLE))
Kojto 112:6f327212ef96 539 #define IS_USART_LASTBIT(LASTBIT) (((LASTBIT) == USART_LASTBIT_DISABLE) || \
Kojto 112:6f327212ef96 540 ((LASTBIT) == USART_LASTBIT_ENABLE))
Kojto 112:6f327212ef96 541 #define IS_USART_PHASE(CPHA) (((CPHA) == USART_PHASE_1EDGE) || ((CPHA) == USART_PHASE_2EDGE))
Kojto 112:6f327212ef96 542 #define IS_USART_POLARITY(CPOL) (((CPOL) == USART_POLARITY_LOW) || ((CPOL) == USART_POLARITY_HIGH))
Kojto 112:6f327212ef96 543 #define IS_USART_CLOCK(CLOCK) (((CLOCK) == USART_CLOCK_DISABLE) || \
Kojto 112:6f327212ef96 544 ((CLOCK) == USART_CLOCK_ENABLE))
Kojto 112:6f327212ef96 545 #define IS_USART_WORD_LENGTH(LENGTH) (((LENGTH) == USART_WORDLENGTH_8B) || \
Kojto 112:6f327212ef96 546 ((LENGTH) == USART_WORDLENGTH_9B))
Kojto 112:6f327212ef96 547 #define IS_USART_STOPBITS(STOPBITS) (((STOPBITS) == USART_STOPBITS_1) || \
Kojto 112:6f327212ef96 548 ((STOPBITS) == USART_STOPBITS_0_5) || \
Kojto 112:6f327212ef96 549 ((STOPBITS) == USART_STOPBITS_1_5) || \
Kojto 112:6f327212ef96 550 ((STOPBITS) == USART_STOPBITS_2))
Kojto 112:6f327212ef96 551 #define IS_USART_PARITY(PARITY) (((PARITY) == USART_PARITY_NONE) || \
Kojto 112:6f327212ef96 552 ((PARITY) == USART_PARITY_EVEN) || \
Kojto 112:6f327212ef96 553 ((PARITY) == USART_PARITY_ODD))
Kojto 112:6f327212ef96 554 #define IS_USART_MODE(MODE) ((((MODE) & (uint32_t)0xFFF3) == 0x00) && ((MODE) != (uint32_t)0x00))
Kojto 112:6f327212ef96 555 #define IS_USART_BAUDRATE(BAUDRATE) ((BAUDRATE) < 10500001)
Kojto 112:6f327212ef96 556
Kojto 112:6f327212ef96 557 #define USART_DIV(_PCLK_, _BAUD_) (((_PCLK_)*25)/(2*(_BAUD_)))
Kojto 112:6f327212ef96 558 #define USART_DIVMANT(_PCLK_, _BAUD_) (USART_DIV((_PCLK_), (_BAUD_))/100)
Kojto 112:6f327212ef96 559 #define USART_DIVFRAQ(_PCLK_, _BAUD_) (((USART_DIV((_PCLK_), (_BAUD_)) - (USART_DIVMANT((_PCLK_), (_BAUD_)) * 100)) * 16 + 50) / 100)
Kojto 112:6f327212ef96 560 #define USART_BRR(_PCLK_, _BAUD_) ((USART_DIVMANT((_PCLK_), (_BAUD_)) << 4)|(USART_DIVFRAQ((_PCLK_), (_BAUD_)) & 0x0F))
Kojto 112:6f327212ef96 561 /**
Kojto 112:6f327212ef96 562 * @}
Kojto 112:6f327212ef96 563 */
Kojto 112:6f327212ef96 564
Kojto 112:6f327212ef96 565 /* Private functions ---------------------------------------------------------*/
Kojto 112:6f327212ef96 566 /** @defgroup USART_Private_Functions USART Private Functions
Kojto 112:6f327212ef96 567 * @{
Kojto 112:6f327212ef96 568 */
Kojto 112:6f327212ef96 569
Kojto 112:6f327212ef96 570 /**
Kojto 112:6f327212ef96 571 * @}
Kojto 112:6f327212ef96 572 */
Kojto 112:6f327212ef96 573
Kojto 112:6f327212ef96 574 /**
Kojto 112:6f327212ef96 575 * @}
Kojto 112:6f327212ef96 576 */
Kojto 112:6f327212ef96 577
Kojto 112:6f327212ef96 578 /**
Kojto 112:6f327212ef96 579 * @}
Kojto 112:6f327212ef96 580 */
Kojto 112:6f327212ef96 581
Kojto 112:6f327212ef96 582 #ifdef __cplusplus
Kojto 112:6f327212ef96 583 }
Kojto 112:6f327212ef96 584 #endif
Kojto 112:6f327212ef96 585
Kojto 112:6f327212ef96 586 #endif /* __STM32F4xx_HAL_USART_H */
Kojto 112:6f327212ef96 587
Kojto 112:6f327212ef96 588 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/