/TARGET_K64F/TARGET_Freescale/TARGET_KPSDK_MCUS/TARGET_KPSDK_CODE/hal/adc/fsl_adc_hal.h substitute line 894 extern } by }

Fork of mbed by mbed official

Committer:
fblanc
Date:
Fri Dec 05 15:42:32 2014 +0000
Revision:
93:9dd889aeda0e
Parent:
92:4fc01daae5a5
substitute line 894 extern } by }; /TARGET_K64F/TARGET_Freescale/TARGET_KPSDK_MCUS/TARGET_KPSDK_CODE/hal/adc/fsl_adc_hal.h

Who changed what in which revision?

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