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:
Kojto
Date:
Wed Sep 02 14:17:43 2015 +0100
Revision:
106:ba1f97679dad
Child:
110:165afa46840b
Release 106  of the mbed library

Changes:
- new platform - Nucleo F446RE
- STM32F4 Cube driver update v2.3.2
- ST cmsis driver v2.3.2
- nordic bugfix gcc linker start address
- lpc11u68 - bugfix for serial ports

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 106:ba1f97679dad 1 /**
Kojto 106:ba1f97679dad 2 ******************************************************************************
Kojto 106:ba1f97679dad 3 * @file stm32f4xx_hal_uart.h
Kojto 106:ba1f97679dad 4 * @author MCD Application Team
Kojto 106:ba1f97679dad 5 * @version V1.3.2
Kojto 106:ba1f97679dad 6 * @date 26-June-2015
Kojto 106:ba1f97679dad 7 * @brief Header file of UART HAL module.
Kojto 106:ba1f97679dad 8 ******************************************************************************
Kojto 106:ba1f97679dad 9 * @attention
Kojto 106:ba1f97679dad 10 *
Kojto 106:ba1f97679dad 11 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
Kojto 106:ba1f97679dad 12 *
Kojto 106:ba1f97679dad 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 106:ba1f97679dad 14 * are permitted provided that the following conditions are met:
Kojto 106:ba1f97679dad 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 106:ba1f97679dad 16 * this list of conditions and the following disclaimer.
Kojto 106:ba1f97679dad 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 106:ba1f97679dad 18 * this list of conditions and the following disclaimer in the documentation
Kojto 106:ba1f97679dad 19 * and/or other materials provided with the distribution.
Kojto 106:ba1f97679dad 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 106:ba1f97679dad 21 * may be used to endorse or promote products derived from this software
Kojto 106:ba1f97679dad 22 * without specific prior written permission.
Kojto 106:ba1f97679dad 23 *
Kojto 106:ba1f97679dad 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 106:ba1f97679dad 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 106:ba1f97679dad 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 106:ba1f97679dad 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 106:ba1f97679dad 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 106:ba1f97679dad 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 106:ba1f97679dad 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 106:ba1f97679dad 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 106:ba1f97679dad 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 106:ba1f97679dad 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 106:ba1f97679dad 34 *
Kojto 106:ba1f97679dad 35 ******************************************************************************
Kojto 106:ba1f97679dad 36 */
Kojto 106:ba1f97679dad 37
Kojto 106:ba1f97679dad 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 106:ba1f97679dad 39 #ifndef __STM32F4xx_HAL_UART_H
Kojto 106:ba1f97679dad 40 #define __STM32F4xx_HAL_UART_H
Kojto 106:ba1f97679dad 41
Kojto 106:ba1f97679dad 42 #ifdef __cplusplus
Kojto 106:ba1f97679dad 43 extern "C" {
Kojto 106:ba1f97679dad 44 #endif
Kojto 106:ba1f97679dad 45
Kojto 106:ba1f97679dad 46 /* Includes ------------------------------------------------------------------*/
Kojto 106:ba1f97679dad 47 #include "stm32f4xx_hal_def.h"
Kojto 106:ba1f97679dad 48
Kojto 106:ba1f97679dad 49 /** @addtogroup STM32F4xx_HAL_Driver
Kojto 106:ba1f97679dad 50 * @{
Kojto 106:ba1f97679dad 51 */
Kojto 106:ba1f97679dad 52
Kojto 106:ba1f97679dad 53 /** @addtogroup UART
Kojto 106:ba1f97679dad 54 * @{
Kojto 106:ba1f97679dad 55 */
Kojto 106:ba1f97679dad 56
Kojto 106:ba1f97679dad 57 /* Exported types ------------------------------------------------------------*/
Kojto 106:ba1f97679dad 58 /** @defgroup UART_Exported_Types UART Exported Types
Kojto 106:ba1f97679dad 59 * @{
Kojto 106:ba1f97679dad 60 */
Kojto 106:ba1f97679dad 61
Kojto 106:ba1f97679dad 62 /**
Kojto 106:ba1f97679dad 63 * @brief UART Init Structure definition
Kojto 106:ba1f97679dad 64 */
Kojto 106:ba1f97679dad 65 typedef struct
Kojto 106:ba1f97679dad 66 {
Kojto 106:ba1f97679dad 67 uint32_t BaudRate; /*!< This member configures the UART communication baud rate.
Kojto 106:ba1f97679dad 68 The baud rate is computed using the following formula:
Kojto 106:ba1f97679dad 69 - IntegerDivider = ((PCLKx) / (8 * (OVR8+1) * (huart->Init.BaudRate)))
Kojto 106:ba1f97679dad 70 - FractionalDivider = ((IntegerDivider - ((uint32_t) IntegerDivider)) * 8 * (OVR8+1)) + 0.5
Kojto 106:ba1f97679dad 71 Where OVR8 is the "oversampling by 8 mode" configuration bit in the CR1 register. */
Kojto 106:ba1f97679dad 72
Kojto 106:ba1f97679dad 73 uint32_t WordLength; /*!< Specifies the number of data bits transmitted or received in a frame.
Kojto 106:ba1f97679dad 74 This parameter can be a value of @ref UART_Word_Length */
Kojto 106:ba1f97679dad 75
Kojto 106:ba1f97679dad 76 uint32_t StopBits; /*!< Specifies the number of stop bits transmitted.
Kojto 106:ba1f97679dad 77 This parameter can be a value of @ref UART_Stop_Bits */
Kojto 106:ba1f97679dad 78
Kojto 106:ba1f97679dad 79 uint32_t Parity; /*!< Specifies the parity mode.
Kojto 106:ba1f97679dad 80 This parameter can be a value of @ref UART_Parity
Kojto 106:ba1f97679dad 81 @note When parity is enabled, the computed parity is inserted
Kojto 106:ba1f97679dad 82 at the MSB position of the transmitted data (9th bit when
Kojto 106:ba1f97679dad 83 the word length is set to 9 data bits; 8th bit when the
Kojto 106:ba1f97679dad 84 word length is set to 8 data bits). */
Kojto 106:ba1f97679dad 85
Kojto 106:ba1f97679dad 86 uint32_t Mode; /*!< Specifies whether the Receive or Transmit mode is enabled or disabled.
Kojto 106:ba1f97679dad 87 This parameter can be a value of @ref UART_Mode */
Kojto 106:ba1f97679dad 88
Kojto 106:ba1f97679dad 89 uint32_t HwFlowCtl; /*!< Specifies whether the hardware flow control mode is enabled
Kojto 106:ba1f97679dad 90 or disabled.
Kojto 106:ba1f97679dad 91 This parameter can be a value of @ref UART_Hardware_Flow_Control */
Kojto 106:ba1f97679dad 92
Kojto 106:ba1f97679dad 93 uint32_t OverSampling; /*!< Specifies whether the Over sampling 8 is enabled or disabled, to achieve higher speed (up to fPCLK/8).
Kojto 106:ba1f97679dad 94 This parameter can be a value of @ref UART_Over_Sampling */
Kojto 106:ba1f97679dad 95 }UART_InitTypeDef;
Kojto 106:ba1f97679dad 96
Kojto 106:ba1f97679dad 97 /**
Kojto 106:ba1f97679dad 98 * @brief HAL UART State structures definition
Kojto 106:ba1f97679dad 99 */
Kojto 106:ba1f97679dad 100 typedef enum
Kojto 106:ba1f97679dad 101 {
Kojto 106:ba1f97679dad 102 HAL_UART_STATE_RESET = 0x00, /*!< Peripheral is not yet Initialized */
Kojto 106:ba1f97679dad 103 HAL_UART_STATE_READY = 0x01, /*!< Peripheral Initialized and ready for use */
Kojto 106:ba1f97679dad 104 HAL_UART_STATE_BUSY = 0x02, /*!< an internal process is ongoing */
Kojto 106:ba1f97679dad 105 HAL_UART_STATE_BUSY_TX = 0x12, /*!< Data Transmission process is ongoing */
Kojto 106:ba1f97679dad 106 HAL_UART_STATE_BUSY_RX = 0x22, /*!< Data Reception process is ongoing */
Kojto 106:ba1f97679dad 107 HAL_UART_STATE_BUSY_TX_RX = 0x32, /*!< Data Transmission and Reception process is ongoing */
Kojto 106:ba1f97679dad 108 HAL_UART_STATE_TIMEOUT = 0x03, /*!< Timeout state */
Kojto 106:ba1f97679dad 109 HAL_UART_STATE_ERROR = 0x04 /*!< Error */
Kojto 106:ba1f97679dad 110 }HAL_UART_StateTypeDef;
Kojto 106:ba1f97679dad 111
Kojto 106:ba1f97679dad 112 /**
Kojto 106:ba1f97679dad 113 * @brief UART handle Structure definition
Kojto 106:ba1f97679dad 114 */
Kojto 106:ba1f97679dad 115 typedef struct
Kojto 106:ba1f97679dad 116 {
Kojto 106:ba1f97679dad 117 USART_TypeDef *Instance; /*!< UART registers base address */
Kojto 106:ba1f97679dad 118
Kojto 106:ba1f97679dad 119 UART_InitTypeDef Init; /*!< UART communication parameters */
Kojto 106:ba1f97679dad 120
Kojto 106:ba1f97679dad 121 uint8_t *pTxBuffPtr; /*!< Pointer to UART Tx transfer Buffer */
Kojto 106:ba1f97679dad 122
Kojto 106:ba1f97679dad 123 uint16_t TxXferSize; /*!< UART Tx Transfer size */
Kojto 106:ba1f97679dad 124
Kojto 106:ba1f97679dad 125 uint16_t TxXferCount; /*!< UART Tx Transfer Counter */
Kojto 106:ba1f97679dad 126
Kojto 106:ba1f97679dad 127 uint8_t *pRxBuffPtr; /*!< Pointer to UART Rx transfer Buffer */
Kojto 106:ba1f97679dad 128
Kojto 106:ba1f97679dad 129 uint16_t RxXferSize; /*!< UART Rx Transfer size */
Kojto 106:ba1f97679dad 130
Kojto 106:ba1f97679dad 131 uint16_t RxXferCount; /*!< UART Rx Transfer Counter */
Kojto 106:ba1f97679dad 132
Kojto 106:ba1f97679dad 133 DMA_HandleTypeDef *hdmatx; /*!< UART Tx DMA Handle parameters */
Kojto 106:ba1f97679dad 134
Kojto 106:ba1f97679dad 135 DMA_HandleTypeDef *hdmarx; /*!< UART Rx DMA Handle parameters */
Kojto 106:ba1f97679dad 136
Kojto 106:ba1f97679dad 137 HAL_LockTypeDef Lock; /*!< Locking object */
Kojto 106:ba1f97679dad 138
Kojto 106:ba1f97679dad 139 __IO HAL_UART_StateTypeDef State; /*!< UART communication state */
Kojto 106:ba1f97679dad 140
Kojto 106:ba1f97679dad 141 __IO uint32_t ErrorCode; /*!< UART Error code */
Kojto 106:ba1f97679dad 142
Kojto 106:ba1f97679dad 143 }UART_HandleTypeDef;
Kojto 106:ba1f97679dad 144 /**
Kojto 106:ba1f97679dad 145 * @}
Kojto 106:ba1f97679dad 146 */
Kojto 106:ba1f97679dad 147
Kojto 106:ba1f97679dad 148 /* Exported constants --------------------------------------------------------*/
Kojto 106:ba1f97679dad 149 /** @defgroup UART_Exported_Constants UART Exported constants
Kojto 106:ba1f97679dad 150 * @{
Kojto 106:ba1f97679dad 151 */
Kojto 106:ba1f97679dad 152
Kojto 106:ba1f97679dad 153 /** @defgroup UART_Error_Code UART Error Code
Kojto 106:ba1f97679dad 154 * @brief UART Error Code
Kojto 106:ba1f97679dad 155 * @{
Kojto 106:ba1f97679dad 156 */
Kojto 106:ba1f97679dad 157 #define HAL_UART_ERROR_NONE ((uint32_t)0x00000000) /*!< No error */
Kojto 106:ba1f97679dad 158 #define HAL_UART_ERROR_PE ((uint32_t)0x00000001) /*!< Parity error */
Kojto 106:ba1f97679dad 159 #define HAL_UART_ERROR_NE ((uint32_t)0x00000002) /*!< Noise error */
Kojto 106:ba1f97679dad 160 #define HAL_UART_ERROR_FE ((uint32_t)0x00000004) /*!< Frame error */
Kojto 106:ba1f97679dad 161 #define HAL_UART_ERROR_ORE ((uint32_t)0x00000008) /*!< Overrun error */
Kojto 106:ba1f97679dad 162 #define HAL_UART_ERROR_DMA ((uint32_t)0x00000010) /*!< DMA transfer error */
Kojto 106:ba1f97679dad 163 /**
Kojto 106:ba1f97679dad 164 * @}
Kojto 106:ba1f97679dad 165 */
Kojto 106:ba1f97679dad 166
Kojto 106:ba1f97679dad 167 /** @defgroup UART_Word_Length UART Word Length
Kojto 106:ba1f97679dad 168 * @{
Kojto 106:ba1f97679dad 169 */
Kojto 106:ba1f97679dad 170 #define UART_WORDLENGTH_8B ((uint32_t)0x00000000)
Kojto 106:ba1f97679dad 171 #define UART_WORDLENGTH_9B ((uint32_t)USART_CR1_M)
Kojto 106:ba1f97679dad 172 /**
Kojto 106:ba1f97679dad 173 * @}
Kojto 106:ba1f97679dad 174 */
Kojto 106:ba1f97679dad 175
Kojto 106:ba1f97679dad 176 /** @defgroup UART_Stop_Bits UART Number of Stop Bits
Kojto 106:ba1f97679dad 177 * @{
Kojto 106:ba1f97679dad 178 */
Kojto 106:ba1f97679dad 179 #define UART_STOPBITS_1 ((uint32_t)0x00000000)
Kojto 106:ba1f97679dad 180 #define UART_STOPBITS_2 ((uint32_t)USART_CR2_STOP_1)
Kojto 106:ba1f97679dad 181 /**
Kojto 106:ba1f97679dad 182 * @}
Kojto 106:ba1f97679dad 183 */
Kojto 106:ba1f97679dad 184
Kojto 106:ba1f97679dad 185 /** @defgroup UART_Parity UART Parity
Kojto 106:ba1f97679dad 186 * @{
Kojto 106:ba1f97679dad 187 */
Kojto 106:ba1f97679dad 188 #define UART_PARITY_NONE ((uint32_t)0x00000000)
Kojto 106:ba1f97679dad 189 #define UART_PARITY_EVEN ((uint32_t)USART_CR1_PCE)
Kojto 106:ba1f97679dad 190 #define UART_PARITY_ODD ((uint32_t)(USART_CR1_PCE | USART_CR1_PS))
Kojto 106:ba1f97679dad 191 /**
Kojto 106:ba1f97679dad 192 * @}
Kojto 106:ba1f97679dad 193 */
Kojto 106:ba1f97679dad 194
Kojto 106:ba1f97679dad 195 /** @defgroup UART_Hardware_Flow_Control UART Hardware Flow Control
Kojto 106:ba1f97679dad 196 * @{
Kojto 106:ba1f97679dad 197 */
Kojto 106:ba1f97679dad 198 #define UART_HWCONTROL_NONE ((uint32_t)0x00000000)
Kojto 106:ba1f97679dad 199 #define UART_HWCONTROL_RTS ((uint32_t)USART_CR3_RTSE)
Kojto 106:ba1f97679dad 200 #define UART_HWCONTROL_CTS ((uint32_t)USART_CR3_CTSE)
Kojto 106:ba1f97679dad 201 #define UART_HWCONTROL_RTS_CTS ((uint32_t)(USART_CR3_RTSE | USART_CR3_CTSE))
Kojto 106:ba1f97679dad 202 /**
Kojto 106:ba1f97679dad 203 * @}
Kojto 106:ba1f97679dad 204 */
Kojto 106:ba1f97679dad 205
Kojto 106:ba1f97679dad 206 /** @defgroup UART_Mode UART Transfer Mode
Kojto 106:ba1f97679dad 207 * @{
Kojto 106:ba1f97679dad 208 */
Kojto 106:ba1f97679dad 209 #define UART_MODE_RX ((uint32_t)USART_CR1_RE)
Kojto 106:ba1f97679dad 210 #define UART_MODE_TX ((uint32_t)USART_CR1_TE)
Kojto 106:ba1f97679dad 211 #define UART_MODE_TX_RX ((uint32_t)(USART_CR1_TE |USART_CR1_RE))
Kojto 106:ba1f97679dad 212 /**
Kojto 106:ba1f97679dad 213 * @}
Kojto 106:ba1f97679dad 214 */
Kojto 106:ba1f97679dad 215
Kojto 106:ba1f97679dad 216 /** @defgroup UART_State UART State
Kojto 106:ba1f97679dad 217 * @{
Kojto 106:ba1f97679dad 218 */
Kojto 106:ba1f97679dad 219 #define UART_STATE_DISABLE ((uint32_t)0x00000000)
Kojto 106:ba1f97679dad 220 #define UART_STATE_ENABLE ((uint32_t)USART_CR1_UE)
Kojto 106:ba1f97679dad 221 /**
Kojto 106:ba1f97679dad 222 * @}
Kojto 106:ba1f97679dad 223 */
Kojto 106:ba1f97679dad 224
Kojto 106:ba1f97679dad 225 /** @defgroup UART_Over_Sampling UART Over Sampling
Kojto 106:ba1f97679dad 226 * @{
Kojto 106:ba1f97679dad 227 */
Kojto 106:ba1f97679dad 228 #define UART_OVERSAMPLING_16 ((uint32_t)0x00000000)
Kojto 106:ba1f97679dad 229 #define UART_OVERSAMPLING_8 ((uint32_t)USART_CR1_OVER8)
Kojto 106:ba1f97679dad 230 /**
Kojto 106:ba1f97679dad 231 * @}
Kojto 106:ba1f97679dad 232 */
Kojto 106:ba1f97679dad 233
Kojto 106:ba1f97679dad 234 /** @defgroup UART_LIN_Break_Detection_Length UART LIN Break Detection Length
Kojto 106:ba1f97679dad 235 * @{
Kojto 106:ba1f97679dad 236 */
Kojto 106:ba1f97679dad 237 #define UART_LINBREAKDETECTLENGTH_10B ((uint32_t)0x00000000)
Kojto 106:ba1f97679dad 238 #define UART_LINBREAKDETECTLENGTH_11B ((uint32_t)0x00000020)
Kojto 106:ba1f97679dad 239 /**
Kojto 106:ba1f97679dad 240 * @}
Kojto 106:ba1f97679dad 241 */
Kojto 106:ba1f97679dad 242
Kojto 106:ba1f97679dad 243 /** @defgroup UART_WakeUp_functions UART Wakeup Functions
Kojto 106:ba1f97679dad 244 * @{
Kojto 106:ba1f97679dad 245 */
Kojto 106:ba1f97679dad 246 #define UART_WAKEUPMETHOD_IDLELINE ((uint32_t)0x00000000)
Kojto 106:ba1f97679dad 247 #define UART_WAKEUPMETHOD_ADDRESSMARK ((uint32_t)0x00000800)
Kojto 106:ba1f97679dad 248 /**
Kojto 106:ba1f97679dad 249 * @}
Kojto 106:ba1f97679dad 250 */
Kojto 106:ba1f97679dad 251
Kojto 106:ba1f97679dad 252 /** @defgroup UART_Flags UART FLags
Kojto 106:ba1f97679dad 253 * Elements values convention: 0xXXXX
Kojto 106:ba1f97679dad 254 * - 0xXXXX : Flag mask in the SR register
Kojto 106:ba1f97679dad 255 * @{
Kojto 106:ba1f97679dad 256 */
Kojto 106:ba1f97679dad 257 #define UART_FLAG_CTS ((uint32_t)USART_SR_CTS)
Kojto 106:ba1f97679dad 258 #define UART_FLAG_LBD ((uint32_t)USART_SR_LBD)
Kojto 106:ba1f97679dad 259 #define UART_FLAG_TXE ((uint32_t)USART_SR_TXE)
Kojto 106:ba1f97679dad 260 #define UART_FLAG_TC ((uint32_t)USART_SR_TC)
Kojto 106:ba1f97679dad 261 #define UART_FLAG_RXNE ((uint32_t)USART_SR_RXNE)
Kojto 106:ba1f97679dad 262 #define UART_FLAG_IDLE ((uint32_t)USART_SR_IDLE)
Kojto 106:ba1f97679dad 263 #define UART_FLAG_ORE ((uint32_t)USART_SR_ORE)
Kojto 106:ba1f97679dad 264 #define UART_FLAG_NE ((uint32_t)USART_SR_NE)
Kojto 106:ba1f97679dad 265 #define UART_FLAG_FE ((uint32_t)USART_SR_FE)
Kojto 106:ba1f97679dad 266 #define UART_FLAG_PE ((uint32_t)USART_SR_PE)
Kojto 106:ba1f97679dad 267 /**
Kojto 106:ba1f97679dad 268 * @}
Kojto 106:ba1f97679dad 269 */
Kojto 106:ba1f97679dad 270
Kojto 106:ba1f97679dad 271 /** @defgroup UART_Interrupt_definition UART Interrupt Definitions
Kojto 106:ba1f97679dad 272 * Elements values convention: 0xY000XXXX
Kojto 106:ba1f97679dad 273 * - XXXX : Interrupt mask (16 bits) in the Y register
Kojto 106:ba1f97679dad 274 * - Y : Interrupt source register (2bits)
Kojto 106:ba1f97679dad 275 * - 0001: CR1 register
Kojto 106:ba1f97679dad 276 * - 0010: CR2 register
Kojto 106:ba1f97679dad 277 * - 0011: CR3 register
Kojto 106:ba1f97679dad 278 *
Kojto 106:ba1f97679dad 279 * @{
Kojto 106:ba1f97679dad 280 */
Kojto 106:ba1f97679dad 281
Kojto 106:ba1f97679dad 282 #define UART_IT_PE ((uint32_t)(UART_CR1_REG_INDEX << 28 | USART_CR1_PEIE))
Kojto 106:ba1f97679dad 283 #define UART_IT_TXE ((uint32_t)(UART_CR1_REG_INDEX << 28 | USART_CR1_TXEIE))
Kojto 106:ba1f97679dad 284 #define UART_IT_TC ((uint32_t)(UART_CR1_REG_INDEX << 28 | USART_CR1_TCIE))
Kojto 106:ba1f97679dad 285 #define UART_IT_RXNE ((uint32_t)(UART_CR1_REG_INDEX << 28 | USART_CR1_RXNEIE))
Kojto 106:ba1f97679dad 286 #define UART_IT_IDLE ((uint32_t)(UART_CR1_REG_INDEX << 28 | USART_CR1_IDLEIE))
Kojto 106:ba1f97679dad 287
Kojto 106:ba1f97679dad 288 #define UART_IT_LBD ((uint32_t)(UART_CR2_REG_INDEX << 28 | USART_CR2_LBDIE))
Kojto 106:ba1f97679dad 289
Kojto 106:ba1f97679dad 290 #define UART_IT_CTS ((uint32_t)(UART_CR3_REG_INDEX << 28 | USART_CR3_CTSIE))
Kojto 106:ba1f97679dad 291 #define UART_IT_ERR ((uint32_t)(UART_CR3_REG_INDEX << 28 | USART_CR3_EIE))
Kojto 106:ba1f97679dad 292 /**
Kojto 106:ba1f97679dad 293 * @}
Kojto 106:ba1f97679dad 294 */
Kojto 106:ba1f97679dad 295
Kojto 106:ba1f97679dad 296 /**
Kojto 106:ba1f97679dad 297 * @}
Kojto 106:ba1f97679dad 298 */
Kojto 106:ba1f97679dad 299
Kojto 106:ba1f97679dad 300 /* Exported macro ------------------------------------------------------------*/
Kojto 106:ba1f97679dad 301 /** @defgroup UART_Exported_Macros UART Exported Macros
Kojto 106:ba1f97679dad 302 * @{
Kojto 106:ba1f97679dad 303 */
Kojto 106:ba1f97679dad 304
Kojto 106:ba1f97679dad 305 /** @brief Reset UART handle state
Kojto 106:ba1f97679dad 306 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 307 * This parameter can be UARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
Kojto 106:ba1f97679dad 308 * UART peripheral.
Kojto 106:ba1f97679dad 309 * @retval None
Kojto 106:ba1f97679dad 310 */
Kojto 106:ba1f97679dad 311 #define __HAL_UART_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_UART_STATE_RESET)
Kojto 106:ba1f97679dad 312
Kojto 106:ba1f97679dad 313 /** @brief Flushes the UART DR register
Kojto 106:ba1f97679dad 314 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 315 */
Kojto 106:ba1f97679dad 316 #define __HAL_UART_FLUSH_DRREGISTER(__HANDLE__) ((__HANDLE__)->Instance->DR)
Kojto 106:ba1f97679dad 317
Kojto 106:ba1f97679dad 318 /** @brief Checks whether the specified UART flag is set or not.
Kojto 106:ba1f97679dad 319 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 320 * This parameter can be UARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
Kojto 106:ba1f97679dad 321 * UART peripheral.
Kojto 106:ba1f97679dad 322 * @param __FLAG__: specifies the flag to check.
Kojto 106:ba1f97679dad 323 * This parameter can be one of the following values:
Kojto 106:ba1f97679dad 324 * @arg UART_FLAG_CTS: CTS Change flag (not available for UART4 and UART5)
Kojto 106:ba1f97679dad 325 * @arg UART_FLAG_LBD: LIN Break detection flag
Kojto 106:ba1f97679dad 326 * @arg UART_FLAG_TXE: Transmit data register empty flag
Kojto 106:ba1f97679dad 327 * @arg UART_FLAG_TC: Transmission Complete flag
Kojto 106:ba1f97679dad 328 * @arg UART_FLAG_RXNE: Receive data register not empty flag
Kojto 106:ba1f97679dad 329 * @arg UART_FLAG_IDLE: Idle Line detection flag
Kojto 106:ba1f97679dad 330 * @arg UART_FLAG_ORE: Overrun Error flag
Kojto 106:ba1f97679dad 331 * @arg UART_FLAG_NE: Noise Error flag
Kojto 106:ba1f97679dad 332 * @arg UART_FLAG_FE: Framing Error flag
Kojto 106:ba1f97679dad 333 * @arg UART_FLAG_PE: Parity Error flag
Kojto 106:ba1f97679dad 334 * @retval The new state of __FLAG__ (TRUE or FALSE).
Kojto 106:ba1f97679dad 335 */
Kojto 106:ba1f97679dad 336
Kojto 106:ba1f97679dad 337 #define __HAL_UART_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->SR & (__FLAG__)) == (__FLAG__))
Kojto 106:ba1f97679dad 338
Kojto 106:ba1f97679dad 339 /** @brief Clears the specified UART pending flag.
Kojto 106:ba1f97679dad 340 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 341 * This parameter can be UARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
Kojto 106:ba1f97679dad 342 * UART peripheral.
Kojto 106:ba1f97679dad 343 * @param __FLAG__: specifies the flag to check.
Kojto 106:ba1f97679dad 344 * This parameter can be any combination of the following values:
Kojto 106:ba1f97679dad 345 * @arg UART_FLAG_CTS: CTS Change flag (not available for UART4 and UART5).
Kojto 106:ba1f97679dad 346 * @arg UART_FLAG_LBD: LIN Break detection flag.
Kojto 106:ba1f97679dad 347 * @arg UART_FLAG_TC: Transmission Complete flag.
Kojto 106:ba1f97679dad 348 * @arg UART_FLAG_RXNE: Receive data register not empty flag.
Kojto 106:ba1f97679dad 349 *
Kojto 106:ba1f97679dad 350 * @note PE (Parity error), FE (Framing error), NE (Noise error), ORE (Overrun
Kojto 106:ba1f97679dad 351 * error) and IDLE (Idle line detected) flags are cleared by software
Kojto 106:ba1f97679dad 352 * sequence: a read operation to USART_SR register followed by a read
Kojto 106:ba1f97679dad 353 * operation to USART_DR register.
Kojto 106:ba1f97679dad 354 * @note RXNE flag can be also cleared by a read to the USART_DR register.
Kojto 106:ba1f97679dad 355 * @note TC flag can be also cleared by software sequence: a read operation to
Kojto 106:ba1f97679dad 356 * USART_SR register followed by a write operation to USART_DR register.
Kojto 106:ba1f97679dad 357 * @note TXE flag is cleared only by a write to the USART_DR register.
Kojto 106:ba1f97679dad 358 *
Kojto 106:ba1f97679dad 359 * @retval None
Kojto 106:ba1f97679dad 360 */
Kojto 106:ba1f97679dad 361 #define __HAL_UART_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->SR = ~(__FLAG__))
Kojto 106:ba1f97679dad 362
Kojto 106:ba1f97679dad 363 /** @brief Clear the UART PE pending flag.
Kojto 106:ba1f97679dad 364 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 365 * This parameter can be UARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
Kojto 106:ba1f97679dad 366 * UART peripheral.
Kojto 106:ba1f97679dad 367 * @retval None
Kojto 106:ba1f97679dad 368 */
Kojto 106:ba1f97679dad 369 #define __HAL_UART_CLEAR_PEFLAG(__HANDLE__) \
Kojto 106:ba1f97679dad 370 do{ \
Kojto 106:ba1f97679dad 371 __IO uint32_t tmpreg; \
Kojto 106:ba1f97679dad 372 tmpreg = (__HANDLE__)->Instance->SR; \
Kojto 106:ba1f97679dad 373 tmpreg = (__HANDLE__)->Instance->DR; \
Kojto 106:ba1f97679dad 374 UNUSED(tmpreg); \
Kojto 106:ba1f97679dad 375 } while(0)
Kojto 106:ba1f97679dad 376
Kojto 106:ba1f97679dad 377 /** @brief Clear the UART FE pending flag.
Kojto 106:ba1f97679dad 378 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 379 * This parameter can be UARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
Kojto 106:ba1f97679dad 380 * UART peripheral.
Kojto 106:ba1f97679dad 381 * @retval None
Kojto 106:ba1f97679dad 382 */
Kojto 106:ba1f97679dad 383 #define __HAL_UART_CLEAR_FEFLAG(__HANDLE__) __HAL_UART_CLEAR_PEFLAG(__HANDLE__)
Kojto 106:ba1f97679dad 384
Kojto 106:ba1f97679dad 385 /** @brief Clear the UART NE pending flag.
Kojto 106:ba1f97679dad 386 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 387 * This parameter can be UARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
Kojto 106:ba1f97679dad 388 * UART peripheral.
Kojto 106:ba1f97679dad 389 * @retval None
Kojto 106:ba1f97679dad 390 */
Kojto 106:ba1f97679dad 391 #define __HAL_UART_CLEAR_NEFLAG(__HANDLE__) __HAL_UART_CLEAR_PEFLAG(__HANDLE__)
Kojto 106:ba1f97679dad 392
Kojto 106:ba1f97679dad 393 /** @brief Clear the UART ORE pending flag.
Kojto 106:ba1f97679dad 394 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 395 * This parameter can be UARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
Kojto 106:ba1f97679dad 396 * UART peripheral.
Kojto 106:ba1f97679dad 397 * @retval None
Kojto 106:ba1f97679dad 398 */
Kojto 106:ba1f97679dad 399 #define __HAL_UART_CLEAR_OREFLAG(__HANDLE__) __HAL_UART_CLEAR_PEFLAG(__HANDLE__)
Kojto 106:ba1f97679dad 400
Kojto 106:ba1f97679dad 401 /** @brief Clear the UART IDLE pending flag.
Kojto 106:ba1f97679dad 402 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 403 * This parameter can be UARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
Kojto 106:ba1f97679dad 404 * UART peripheral.
Kojto 106:ba1f97679dad 405 * @retval None
Kojto 106:ba1f97679dad 406 */
Kojto 106:ba1f97679dad 407 #define __HAL_UART_CLEAR_IDLEFLAG(__HANDLE__) __HAL_UART_CLEAR_PEFLAG(__HANDLE__)
Kojto 106:ba1f97679dad 408
Kojto 106:ba1f97679dad 409 /** @brief Enable the specified UART interrupt.
Kojto 106:ba1f97679dad 410 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 411 * This parameter can be UARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
Kojto 106:ba1f97679dad 412 * UART peripheral.
Kojto 106:ba1f97679dad 413 * @param __INTERRUPT__: specifies the UART interrupt source to enable.
Kojto 106:ba1f97679dad 414 * This parameter can be one of the following values:
Kojto 106:ba1f97679dad 415 * @arg UART_IT_CTS: CTS change interrupt
Kojto 106:ba1f97679dad 416 * @arg UART_IT_LBD: LIN Break detection interrupt
Kojto 106:ba1f97679dad 417 * @arg UART_IT_TXE: Transmit Data Register empty interrupt
Kojto 106:ba1f97679dad 418 * @arg UART_IT_TC: Transmission complete interrupt
Kojto 106:ba1f97679dad 419 * @arg UART_IT_RXNE: Receive Data register not empty interrupt
Kojto 106:ba1f97679dad 420 * @arg UART_IT_IDLE: Idle line detection interrupt
Kojto 106:ba1f97679dad 421 * @arg UART_IT_PE: Parity Error interrupt
Kojto 106:ba1f97679dad 422 * @arg UART_IT_ERR: Error interrupt(Frame error, noise error, overrun error)
Kojto 106:ba1f97679dad 423 * @retval None
Kojto 106:ba1f97679dad 424 */
Kojto 106:ba1f97679dad 425 #define UART_IT_MASK ((uint32_t)0x0000FFFF)
Kojto 106:ba1f97679dad 426 #define __HAL_UART_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((((__INTERRUPT__) >> 28) == 1)? ((__HANDLE__)->Instance->CR1 |= ((__INTERRUPT__) & UART_IT_MASK)): \
Kojto 106:ba1f97679dad 427 (((__INTERRUPT__) >> 28) == 2)? ((__HANDLE__)->Instance->CR2 |= ((__INTERRUPT__) & UART_IT_MASK)): \
Kojto 106:ba1f97679dad 428 ((__HANDLE__)->Instance->CR3 |= ((__INTERRUPT__) & UART_IT_MASK)))
Kojto 106:ba1f97679dad 429 /** @brief Disable the specified UART interrupt.
Kojto 106:ba1f97679dad 430 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 431 * This parameter can be UARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
Kojto 106:ba1f97679dad 432 * UART peripheral.
Kojto 106:ba1f97679dad 433 * @param __INTERRUPT__: specifies the UART interrupt source to disable.
Kojto 106:ba1f97679dad 434 * This parameter can be one of the following values:
Kojto 106:ba1f97679dad 435 * @arg UART_IT_CTS: CTS change interrupt
Kojto 106:ba1f97679dad 436 * @arg UART_IT_LBD: LIN Break detection interrupt
Kojto 106:ba1f97679dad 437 * @arg UART_IT_TXE: Transmit Data Register empty interrupt
Kojto 106:ba1f97679dad 438 * @arg UART_IT_TC: Transmission complete interrupt
Kojto 106:ba1f97679dad 439 * @arg UART_IT_RXNE: Receive Data register not empty interrupt
Kojto 106:ba1f97679dad 440 * @arg UART_IT_IDLE: Idle line detection interrupt
Kojto 106:ba1f97679dad 441 * @arg UART_IT_PE: Parity Error interrupt
Kojto 106:ba1f97679dad 442 * @arg UART_IT_ERR: Error interrupt(Frame error, noise error, overrun error)
Kojto 106:ba1f97679dad 443 * @retval None
Kojto 106:ba1f97679dad 444 */
Kojto 106:ba1f97679dad 445 #define __HAL_UART_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((((__INTERRUPT__) >> 28) == 1)? ((__HANDLE__)->Instance->CR1 &= ~((__INTERRUPT__) & UART_IT_MASK)): \
Kojto 106:ba1f97679dad 446 (((__INTERRUPT__) >> 28) == 2)? ((__HANDLE__)->Instance->CR2 &= ~((__INTERRUPT__) & UART_IT_MASK)): \
Kojto 106:ba1f97679dad 447 ((__HANDLE__)->Instance->CR3 &= ~ ((__INTERRUPT__) & UART_IT_MASK)))
Kojto 106:ba1f97679dad 448
Kojto 106:ba1f97679dad 449 /** @brief Checks whether the specified UART interrupt has occurred or not.
Kojto 106:ba1f97679dad 450 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 451 * This parameter can be UARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
Kojto 106:ba1f97679dad 452 * UART peripheral.
Kojto 106:ba1f97679dad 453 * @param __IT__: specifies the UART interrupt source to check.
Kojto 106:ba1f97679dad 454 * This parameter can be one of the following values:
Kojto 106:ba1f97679dad 455 * @arg UART_IT_CTS: CTS change interrupt (not available for UART4 and UART5)
Kojto 106:ba1f97679dad 456 * @arg UART_IT_LBD: LIN Break detection interrupt
Kojto 106:ba1f97679dad 457 * @arg UART_IT_TXE: Transmit Data Register empty interrupt
Kojto 106:ba1f97679dad 458 * @arg UART_IT_TC: Transmission complete interrupt
Kojto 106:ba1f97679dad 459 * @arg UART_IT_RXNE: Receive Data register not empty interrupt
Kojto 106:ba1f97679dad 460 * @arg UART_IT_IDLE: Idle line detection interrupt
Kojto 106:ba1f97679dad 461 * @arg USART_IT_ERR: Error interrupt
Kojto 106:ba1f97679dad 462 * @retval The new state of __IT__ (TRUE or FALSE).
Kojto 106:ba1f97679dad 463 */
Kojto 106:ba1f97679dad 464 #define __HAL_UART_GET_IT_SOURCE(__HANDLE__, __IT__) (((((__IT__) >> 28) == 1)? (__HANDLE__)->Instance->CR1:(((((uint32_t)(__IT__)) >> 28) == 2)? \
Kojto 106:ba1f97679dad 465 (__HANDLE__)->Instance->CR2 : (__HANDLE__)->Instance->CR3)) & (((uint32_t)(__IT__)) & UART_IT_MASK))
Kojto 106:ba1f97679dad 466
Kojto 106:ba1f97679dad 467 /** @brief Enable CTS flow control
Kojto 106:ba1f97679dad 468 * This macro allows to enable CTS hardware flow control for a given UART instance,
Kojto 106:ba1f97679dad 469 * without need to call HAL_UART_Init() function.
Kojto 106:ba1f97679dad 470 * As involving direct access to UART registers, usage of this macro should be fully endorsed by user.
Kojto 106:ba1f97679dad 471 * @note As macro is expected to be used for modifying CTS Hw flow control feature activation, without need
Kojto 106:ba1f97679dad 472 * for USART instance Deinit/Init, following conditions for macro call should be fulfilled :
Kojto 106:ba1f97679dad 473 * - UART instance should have already been initialised (through call of HAL_UART_Init() )
Kojto 106:ba1f97679dad 474 * - macro could only be called when corresponding UART instance is disabled (i.e __HAL_UART_DISABLE(__HANDLE__))
Kojto 106:ba1f97679dad 475 * and should be followed by an Enable macro (i.e __HAL_UART_ENABLE(__HANDLE__)).
Kojto 106:ba1f97679dad 476 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 477 * The Handle Instance can be USART1, USART2 or LPUART.
Kojto 106:ba1f97679dad 478 * @retval None
Kojto 106:ba1f97679dad 479 */
Kojto 106:ba1f97679dad 480 #define __HAL_UART_HWCONTROL_CTS_ENABLE(__HANDLE__) \
Kojto 106:ba1f97679dad 481 do{ \
Kojto 106:ba1f97679dad 482 SET_BIT((__HANDLE__)->Instance->CR3, USART_CR3_CTSE); \
Kojto 106:ba1f97679dad 483 (__HANDLE__)->Init.HwFlowCtl |= USART_CR3_CTSE; \
Kojto 106:ba1f97679dad 484 } while(0)
Kojto 106:ba1f97679dad 485
Kojto 106:ba1f97679dad 486 /** @brief Disable CTS flow control
Kojto 106:ba1f97679dad 487 * This macro allows to disable CTS hardware flow control for a given UART instance,
Kojto 106:ba1f97679dad 488 * without need to call HAL_UART_Init() function.
Kojto 106:ba1f97679dad 489 * As involving direct access to UART registers, usage of this macro should be fully endorsed by user.
Kojto 106:ba1f97679dad 490 * @note As macro is expected to be used for modifying CTS Hw flow control feature activation, without need
Kojto 106:ba1f97679dad 491 * for USART instance Deinit/Init, following conditions for macro call should be fulfilled :
Kojto 106:ba1f97679dad 492 * - UART instance should have already been initialised (through call of HAL_UART_Init() )
Kojto 106:ba1f97679dad 493 * - macro could only be called when corresponding UART instance is disabled (i.e __HAL_UART_DISABLE(__HANDLE__))
Kojto 106:ba1f97679dad 494 * and should be followed by an Enable macro (i.e __HAL_UART_ENABLE(__HANDLE__)).
Kojto 106:ba1f97679dad 495 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 496 * The Handle Instance can be USART1, USART2 or LPUART.
Kojto 106:ba1f97679dad 497 * @retval None
Kojto 106:ba1f97679dad 498 */
Kojto 106:ba1f97679dad 499 #define __HAL_UART_HWCONTROL_CTS_DISABLE(__HANDLE__) \
Kojto 106:ba1f97679dad 500 do{ \
Kojto 106:ba1f97679dad 501 CLEAR_BIT((__HANDLE__)->Instance->CR3, USART_CR3_CTSE); \
Kojto 106:ba1f97679dad 502 (__HANDLE__)->Init.HwFlowCtl &= ~(USART_CR3_CTSE); \
Kojto 106:ba1f97679dad 503 } while(0)
Kojto 106:ba1f97679dad 504
Kojto 106:ba1f97679dad 505 /** @brief Enable RTS flow control
Kojto 106:ba1f97679dad 506 * This macro allows to enable RTS hardware flow control for a given UART instance,
Kojto 106:ba1f97679dad 507 * without need to call HAL_UART_Init() function.
Kojto 106:ba1f97679dad 508 * As involving direct access to UART registers, usage of this macro should be fully endorsed by user.
Kojto 106:ba1f97679dad 509 * @note As macro is expected to be used for modifying RTS Hw flow control feature activation, without need
Kojto 106:ba1f97679dad 510 * for USART instance Deinit/Init, following conditions for macro call should be fulfilled :
Kojto 106:ba1f97679dad 511 * - UART instance should have already been initialised (through call of HAL_UART_Init() )
Kojto 106:ba1f97679dad 512 * - macro could only be called when corresponding UART instance is disabled (i.e __HAL_UART_DISABLE(__HANDLE__))
Kojto 106:ba1f97679dad 513 * and should be followed by an Enable macro (i.e __HAL_UART_ENABLE(__HANDLE__)).
Kojto 106:ba1f97679dad 514 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 515 * The Handle Instance can be USART1, USART2 or LPUART.
Kojto 106:ba1f97679dad 516 * @retval None
Kojto 106:ba1f97679dad 517 */
Kojto 106:ba1f97679dad 518 #define __HAL_UART_HWCONTROL_RTS_ENABLE(__HANDLE__) \
Kojto 106:ba1f97679dad 519 do{ \
Kojto 106:ba1f97679dad 520 SET_BIT((__HANDLE__)->Instance->CR3, USART_CR3_RTSE); \
Kojto 106:ba1f97679dad 521 (__HANDLE__)->Init.HwFlowCtl |= USART_CR3_RTSE; \
Kojto 106:ba1f97679dad 522 } while(0)
Kojto 106:ba1f97679dad 523
Kojto 106:ba1f97679dad 524 /** @brief Disable RTS flow control
Kojto 106:ba1f97679dad 525 * This macro allows to disable RTS hardware flow control for a given UART instance,
Kojto 106:ba1f97679dad 526 * without need to call HAL_UART_Init() function.
Kojto 106:ba1f97679dad 527 * As involving direct access to UART registers, usage of this macro should be fully endorsed by user.
Kojto 106:ba1f97679dad 528 * @note As macro is expected to be used for modifying RTS Hw flow control feature activation, without need
Kojto 106:ba1f97679dad 529 * for USART instance Deinit/Init, following conditions for macro call should be fulfilled :
Kojto 106:ba1f97679dad 530 * - UART instance should have already been initialised (through call of HAL_UART_Init() )
Kojto 106:ba1f97679dad 531 * - macro could only be called when corresponding UART instance is disabled (i.e __HAL_UART_DISABLE(__HANDLE__))
Kojto 106:ba1f97679dad 532 * and should be followed by an Enable macro (i.e __HAL_UART_ENABLE(__HANDLE__)).
Kojto 106:ba1f97679dad 533 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 534 * The Handle Instance can be USART1, USART2 or LPUART.
Kojto 106:ba1f97679dad 535 * @retval None
Kojto 106:ba1f97679dad 536 */
Kojto 106:ba1f97679dad 537 #define __HAL_UART_HWCONTROL_RTS_DISABLE(__HANDLE__) \
Kojto 106:ba1f97679dad 538 do{ \
Kojto 106:ba1f97679dad 539 CLEAR_BIT((__HANDLE__)->Instance->CR3, USART_CR3_RTSE);\
Kojto 106:ba1f97679dad 540 (__HANDLE__)->Init.HwFlowCtl &= ~(USART_CR3_RTSE); \
Kojto 106:ba1f97679dad 541 } while(0)
Kojto 106:ba1f97679dad 542
Kojto 106:ba1f97679dad 543 /** @brief macros to enables the UART's one bit sample method
Kojto 106:ba1f97679dad 544 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 545 * @retval None
Kojto 106:ba1f97679dad 546 */
Kojto 106:ba1f97679dad 547 #define __HAL_UART_ONE_BIT_SAMPLE_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3|= USART_CR3_ONEBIT)
Kojto 106:ba1f97679dad 548
Kojto 106:ba1f97679dad 549 /** @brief macros to disables the UART's one bit sample method
Kojto 106:ba1f97679dad 550 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 551 * @retval None
Kojto 106:ba1f97679dad 552 */
Kojto 106:ba1f97679dad 553 #define __HAL_UART_ONE_BIT_SAMPLE_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3 &= (uint16_t)~((uint16_t)USART_CR3_ONEBIT))
Kojto 106:ba1f97679dad 554
Kojto 106:ba1f97679dad 555 /** @brief Enable UART
Kojto 106:ba1f97679dad 556 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 557 * @retval None
Kojto 106:ba1f97679dad 558 */
Kojto 106:ba1f97679dad 559 #define __HAL_UART_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 |= USART_CR1_UE)
Kojto 106:ba1f97679dad 560
Kojto 106:ba1f97679dad 561 /** @brief Disable UART
Kojto 106:ba1f97679dad 562 * @param __HANDLE__: specifies the UART Handle.
Kojto 106:ba1f97679dad 563 * @retval None
Kojto 106:ba1f97679dad 564 */
Kojto 106:ba1f97679dad 565 #define __HAL_UART_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 &= ~USART_CR1_UE)
Kojto 106:ba1f97679dad 566 /**
Kojto 106:ba1f97679dad 567 * @}
Kojto 106:ba1f97679dad 568 */
Kojto 106:ba1f97679dad 569
Kojto 106:ba1f97679dad 570 /* Exported functions --------------------------------------------------------*/
Kojto 106:ba1f97679dad 571 /** @addtogroup UART_Exported_Functions
Kojto 106:ba1f97679dad 572 * @{
Kojto 106:ba1f97679dad 573 */
Kojto 106:ba1f97679dad 574
Kojto 106:ba1f97679dad 575 /** @addtogroup UART_Exported_Functions_Group1
Kojto 106:ba1f97679dad 576 * @{
Kojto 106:ba1f97679dad 577 */
Kojto 106:ba1f97679dad 578 /* Initialization/de-initialization functions **********************************/
Kojto 106:ba1f97679dad 579 HAL_StatusTypeDef HAL_UART_Init(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 580 HAL_StatusTypeDef HAL_HalfDuplex_Init(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 581 HAL_StatusTypeDef HAL_LIN_Init(UART_HandleTypeDef *huart, uint32_t BreakDetectLength);
Kojto 106:ba1f97679dad 582 HAL_StatusTypeDef HAL_MultiProcessor_Init(UART_HandleTypeDef *huart, uint8_t Address, uint32_t WakeUpMethod);
Kojto 106:ba1f97679dad 583 HAL_StatusTypeDef HAL_UART_DeInit (UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 584 void HAL_UART_MspInit(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 585 void HAL_UART_MspDeInit(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 586 /**
Kojto 106:ba1f97679dad 587 * @}
Kojto 106:ba1f97679dad 588 */
Kojto 106:ba1f97679dad 589
Kojto 106:ba1f97679dad 590 /** @addtogroup UART_Exported_Functions_Group2
Kojto 106:ba1f97679dad 591 * @{
Kojto 106:ba1f97679dad 592 */
Kojto 106:ba1f97679dad 593 /* IO operation functions *******************************************************/
Kojto 106:ba1f97679dad 594 HAL_StatusTypeDef HAL_UART_Transmit(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size, uint32_t Timeout);
Kojto 106:ba1f97679dad 595 HAL_StatusTypeDef HAL_UART_Receive(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size, uint32_t Timeout);
Kojto 106:ba1f97679dad 596 HAL_StatusTypeDef HAL_UART_Transmit_IT(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size);
Kojto 106:ba1f97679dad 597 HAL_StatusTypeDef HAL_UART_Receive_IT(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size);
Kojto 106:ba1f97679dad 598 HAL_StatusTypeDef HAL_UART_Transmit_DMA(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size);
Kojto 106:ba1f97679dad 599 HAL_StatusTypeDef HAL_UART_Receive_DMA(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size);
Kojto 106:ba1f97679dad 600 HAL_StatusTypeDef HAL_UART_DMAPause(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 601 HAL_StatusTypeDef HAL_UART_DMAResume(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 602 HAL_StatusTypeDef HAL_UART_DMAStop(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 603 void HAL_UART_IRQHandler(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 604 void HAL_UART_TxCpltCallback(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 605 void HAL_UART_TxHalfCpltCallback(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 606 void HAL_UART_RxCpltCallback(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 607 void HAL_UART_RxHalfCpltCallback(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 608 void HAL_UART_ErrorCallback(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 609 /**
Kojto 106:ba1f97679dad 610 * @}
Kojto 106:ba1f97679dad 611 */
Kojto 106:ba1f97679dad 612
Kojto 106:ba1f97679dad 613 /** @addtogroup UART_Exported_Functions_Group3
Kojto 106:ba1f97679dad 614 * @{
Kojto 106:ba1f97679dad 615 */
Kojto 106:ba1f97679dad 616 /* Peripheral Control functions ************************************************/
Kojto 106:ba1f97679dad 617 HAL_StatusTypeDef HAL_LIN_SendBreak(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 618 HAL_StatusTypeDef HAL_MultiProcessor_EnterMuteMode(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 619 HAL_StatusTypeDef HAL_MultiProcessor_ExitMuteMode(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 620 HAL_StatusTypeDef HAL_HalfDuplex_EnableTransmitter(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 621 HAL_StatusTypeDef HAL_HalfDuplex_EnableReceiver(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 622 /**
Kojto 106:ba1f97679dad 623 * @}
Kojto 106:ba1f97679dad 624 */
Kojto 106:ba1f97679dad 625
Kojto 106:ba1f97679dad 626 /** @addtogroup UART_Exported_Functions_Group4
Kojto 106:ba1f97679dad 627 * @{
Kojto 106:ba1f97679dad 628 */
Kojto 106:ba1f97679dad 629 /* Peripheral State functions **************************************************/
Kojto 106:ba1f97679dad 630 HAL_UART_StateTypeDef HAL_UART_GetState(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 631 uint32_t HAL_UART_GetError(UART_HandleTypeDef *huart);
Kojto 106:ba1f97679dad 632 /**
Kojto 106:ba1f97679dad 633 * @}
Kojto 106:ba1f97679dad 634 */
Kojto 106:ba1f97679dad 635
Kojto 106:ba1f97679dad 636 /**
Kojto 106:ba1f97679dad 637 * @}
Kojto 106:ba1f97679dad 638 */
Kojto 106:ba1f97679dad 639 /* Private types -------------------------------------------------------------*/
Kojto 106:ba1f97679dad 640 /* Private variables ---------------------------------------------------------*/
Kojto 106:ba1f97679dad 641 /* Private constants ---------------------------------------------------------*/
Kojto 106:ba1f97679dad 642 /** @defgroup UART_Private_Constants UART Private Constants
Kojto 106:ba1f97679dad 643 * @{
Kojto 106:ba1f97679dad 644 */
Kojto 106:ba1f97679dad 645 /** @brief UART interruptions flag mask
Kojto 106:ba1f97679dad 646 *
Kojto 106:ba1f97679dad 647 */
Kojto 106:ba1f97679dad 648 #define UART_CR1_REG_INDEX 1
Kojto 106:ba1f97679dad 649 #define UART_CR2_REG_INDEX 2
Kojto 106:ba1f97679dad 650 #define UART_CR3_REG_INDEX 3
Kojto 106:ba1f97679dad 651 /**
Kojto 106:ba1f97679dad 652 * @}
Kojto 106:ba1f97679dad 653 */
Kojto 106:ba1f97679dad 654
Kojto 106:ba1f97679dad 655 /* Private macros ------------------------------------------------------------*/
Kojto 106:ba1f97679dad 656 /** @defgroup UART_Private_Macros UART Private Macros
Kojto 106:ba1f97679dad 657 * @{
Kojto 106:ba1f97679dad 658 */
Kojto 106:ba1f97679dad 659 #define IS_UART_WORD_LENGTH(LENGTH) (((LENGTH) == UART_WORDLENGTH_8B) || \
Kojto 106:ba1f97679dad 660 ((LENGTH) == UART_WORDLENGTH_9B))
Kojto 106:ba1f97679dad 661 #define IS_UART_LIN_WORD_LENGTH(LENGTH) (((LENGTH) == UART_WORDLENGTH_8B))
Kojto 106:ba1f97679dad 662 #define IS_UART_STOPBITS(STOPBITS) (((STOPBITS) == UART_STOPBITS_1) || \
Kojto 106:ba1f97679dad 663 ((STOPBITS) == UART_STOPBITS_2))
Kojto 106:ba1f97679dad 664 #define IS_UART_PARITY(PARITY) (((PARITY) == UART_PARITY_NONE) || \
Kojto 106:ba1f97679dad 665 ((PARITY) == UART_PARITY_EVEN) || \
Kojto 106:ba1f97679dad 666 ((PARITY) == UART_PARITY_ODD))
Kojto 106:ba1f97679dad 667 #define IS_UART_HARDWARE_FLOW_CONTROL(CONTROL)\
Kojto 106:ba1f97679dad 668 (((CONTROL) == UART_HWCONTROL_NONE) || \
Kojto 106:ba1f97679dad 669 ((CONTROL) == UART_HWCONTROL_RTS) || \
Kojto 106:ba1f97679dad 670 ((CONTROL) == UART_HWCONTROL_CTS) || \
Kojto 106:ba1f97679dad 671 ((CONTROL) == UART_HWCONTROL_RTS_CTS))
Kojto 106:ba1f97679dad 672 #define IS_UART_MODE(MODE) ((((MODE) & (uint32_t)0x0000FFF3) == 0x00) && ((MODE) != (uint32_t)0x000000))
Kojto 106:ba1f97679dad 673 #define IS_UART_STATE(STATE) (((STATE) == UART_STATE_DISABLE) || \
Kojto 106:ba1f97679dad 674 ((STATE) == UART_STATE_ENABLE))
Kojto 106:ba1f97679dad 675 #define IS_UART_OVERSAMPLING(SAMPLING) (((SAMPLING) == UART_OVERSAMPLING_16) || \
Kojto 106:ba1f97679dad 676 ((SAMPLING) == UART_OVERSAMPLING_8))
Kojto 106:ba1f97679dad 677 #define IS_UART_LIN_OVERSAMPLING(SAMPLING) (((SAMPLING) == UART_OVERSAMPLING_16))
Kojto 106:ba1f97679dad 678 #define IS_UART_LIN_BREAK_DETECT_LENGTH(LENGTH) (((LENGTH) == UART_LINBREAKDETECTLENGTH_10B) || \
Kojto 106:ba1f97679dad 679 ((LENGTH) == UART_LINBREAKDETECTLENGTH_11B))
Kojto 106:ba1f97679dad 680 #define IS_UART_WAKEUPMETHOD(WAKEUP) (((WAKEUP) == UART_WAKEUPMETHOD_IDLELINE) || \
Kojto 106:ba1f97679dad 681 ((WAKEUP) == UART_WAKEUPMETHOD_ADDRESSMARK))
Kojto 106:ba1f97679dad 682 #define IS_UART_BAUDRATE(BAUDRATE) ((BAUDRATE) < 10500001)
Kojto 106:ba1f97679dad 683 #define IS_UART_ADDRESS(ADDRESS) ((ADDRESS) <= 0xF)
Kojto 106:ba1f97679dad 684
Kojto 106:ba1f97679dad 685 #define UART_DIV_SAMPLING16(_PCLK_, _BAUD_) (((_PCLK_)*25)/(4*(_BAUD_)))
Kojto 106:ba1f97679dad 686 #define UART_DIVMANT_SAMPLING16(_PCLK_, _BAUD_) (UART_DIV_SAMPLING16((_PCLK_), (_BAUD_))/100)
Kojto 106:ba1f97679dad 687 #define UART_DIVFRAQ_SAMPLING16(_PCLK_, _BAUD_) (((UART_DIV_SAMPLING16((_PCLK_), (_BAUD_)) - (UART_DIVMANT_SAMPLING16((_PCLK_), (_BAUD_)) * 100)) * 16 + 50) / 100)
Kojto 106:ba1f97679dad 688 #define UART_BRR_SAMPLING16(_PCLK_, _BAUD_) ((UART_DIVMANT_SAMPLING16((_PCLK_), (_BAUD_)) << 4)|(UART_DIVFRAQ_SAMPLING16((_PCLK_), (_BAUD_)) & 0x0F))
Kojto 106:ba1f97679dad 689
Kojto 106:ba1f97679dad 690 #define UART_DIV_SAMPLING8(_PCLK_, _BAUD_) (((_PCLK_)*25)/(2*(_BAUD_)))
Kojto 106:ba1f97679dad 691 #define UART_DIVMANT_SAMPLING8(_PCLK_, _BAUD_) (UART_DIV_SAMPLING8((_PCLK_), (_BAUD_))/100)
Kojto 106:ba1f97679dad 692 #define UART_DIVFRAQ_SAMPLING8(_PCLK_, _BAUD_) (((UART_DIV_SAMPLING8((_PCLK_), (_BAUD_)) - (UART_DIVMANT_SAMPLING8((_PCLK_), (_BAUD_)) * 100)) * 16 + 50) / 100)
Kojto 106:ba1f97679dad 693 #define UART_BRR_SAMPLING8(_PCLK_, _BAUD_) ((UART_DIVMANT_SAMPLING8((_PCLK_), (_BAUD_)) << 4)|(UART_DIVFRAQ_SAMPLING8((_PCLK_), (_BAUD_)) & 0x0F))
Kojto 106:ba1f97679dad 694
Kojto 106:ba1f97679dad 695 /**
Kojto 106:ba1f97679dad 696 * @}
Kojto 106:ba1f97679dad 697 */
Kojto 106:ba1f97679dad 698
Kojto 106:ba1f97679dad 699 /* Private functions ---------------------------------------------------------*/
Kojto 106:ba1f97679dad 700 /** @defgroup UART_Private_Functions UART Private Functions
Kojto 106:ba1f97679dad 701 * @{
Kojto 106:ba1f97679dad 702 */
Kojto 106:ba1f97679dad 703
Kojto 106:ba1f97679dad 704 /**
Kojto 106:ba1f97679dad 705 * @}
Kojto 106:ba1f97679dad 706 */
Kojto 106:ba1f97679dad 707
Kojto 106:ba1f97679dad 708 /**
Kojto 106:ba1f97679dad 709 * @}
Kojto 106:ba1f97679dad 710 */
Kojto 106:ba1f97679dad 711
Kojto 106:ba1f97679dad 712 /**
Kojto 106:ba1f97679dad 713 * @}
Kojto 106:ba1f97679dad 714 */
Kojto 106:ba1f97679dad 715
Kojto 106:ba1f97679dad 716 #ifdef __cplusplus
Kojto 106:ba1f97679dad 717 }
Kojto 106:ba1f97679dad 718 #endif
Kojto 106:ba1f97679dad 719
Kojto 106:ba1f97679dad 720 #endif /* __STM32F4xx_HAL_UART_H */
Kojto 106:ba1f97679dad 721
Kojto 106:ba1f97679dad 722 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/