Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Committer:
elijahorr
Date:
Thu Apr 14 07:28:54 2016 +0000
Revision:
121:672067c3ada4
Parent:
110:165afa46840b
.

Who changed what in which revision?

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