mbed(SerialHalfDuplex入り)

Fork of mbed by mbed official

Committer:
yusuke_kyo
Date:
Wed Apr 08 08:04:18 2015 +0000
Revision:
98:01a414ca7d6d
Parent:
93:e188a91d3eaa
remove SerialHalfDuplex.h

Who changed what in which revision?

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