mbed official / mbed

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

Committer:
Kojto
Date:
Thu Jul 07 14:34:11 2016 +0100
Revision:
122:f9eeca106725
Parent:
90:cb3d968589d8
Release 122 of the mbed library

Changes:
- new targets - Nucleo L432KC, Beetle, Nucleo F446ZE, Nucleo L011K4
- Thread safety addition - mbed API should contain a statement about thread safety
- critical section API addition
- CAS API (core_util_atomic_incr/decr)
- DEVICE_ are generated from targets.json file, device.h deprecated
- Callback replaces FunctionPointer to provide std like interface
- mbed HAL API docs improvements
- toolchain - prexif attributes with MBED_
- add new attributes - packed, weak, forcedinline, align
- target.json - contains targets definitions
- ST - L1XX - Cube update to 1.5
- SPI clock selection fix (clock from APB domain)
- F7 - Cube update v1.4.0
- L0 - baudrate init fix
- L1 - Cube update v1.5
- F3 - baudrate init fix, 3 targets CAN support
- F4 - Cube update v1.12.0, 3 targets CAN support
- L4XX - Cube update v1.5.1
- F0 - update Cube to v1.5.0
- L4 - 2 targets (L476RG/VG) CAN support
- NXP - pwm clock fix for KSDK2 MCU
- LPC2368 - remove ARM toolchain support - due to regression
- KSDK2 - fix SPI , I2C address and repeat start
- Silabs - some fixes backported from mbed 3
- Renesas - RZ_A1H - SystemCoreClockUpdate addition

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 90:cb3d968589d8 1 /**
Kojto 90:cb3d968589d8 2 ******************************************************************************
Kojto 90:cb3d968589d8 3 * @file stm32l1xx_hal_irda.h
Kojto 90:cb3d968589d8 4 * @author MCD Application Team
Kojto 122:f9eeca106725 5 * @version V1.1.3
Kojto 122:f9eeca106725 6 * @date 04-March-2016
Kojto 90:cb3d968589d8 7 * @brief This file contains all the functions prototypes for the IRDA
Kojto 90:cb3d968589d8 8 * firmware library.
Kojto 90:cb3d968589d8 9 ******************************************************************************
Kojto 90:cb3d968589d8 10 * @attention
Kojto 90:cb3d968589d8 11 *
Kojto 122:f9eeca106725 12 * <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
Kojto 90:cb3d968589d8 13 *
Kojto 90:cb3d968589d8 14 * Redistribution and use in source and binary forms, with or without modification,
Kojto 90:cb3d968589d8 15 * are permitted provided that the following conditions are met:
Kojto 90:cb3d968589d8 16 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 90:cb3d968589d8 17 * this list of conditions and the following disclaimer.
Kojto 90:cb3d968589d8 18 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 90:cb3d968589d8 19 * this list of conditions and the following disclaimer in the documentation
Kojto 90:cb3d968589d8 20 * and/or other materials provided with the distribution.
Kojto 90:cb3d968589d8 21 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 90:cb3d968589d8 22 * may be used to endorse or promote products derived from this software
Kojto 90:cb3d968589d8 23 * without specific prior written permission.
Kojto 90:cb3d968589d8 24 *
Kojto 90:cb3d968589d8 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 90:cb3d968589d8 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 90:cb3d968589d8 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 90:cb3d968589d8 28 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 90:cb3d968589d8 29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 90:cb3d968589d8 30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 90:cb3d968589d8 31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 90:cb3d968589d8 32 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 90:cb3d968589d8 33 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 90:cb3d968589d8 34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 90:cb3d968589d8 35 *
Kojto 90:cb3d968589d8 36 ******************************************************************************
Kojto 90:cb3d968589d8 37 */
Kojto 90:cb3d968589d8 38
Kojto 90:cb3d968589d8 39 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 90:cb3d968589d8 40 #ifndef __STM32L1xx_HAL_IRDA_H
Kojto 90:cb3d968589d8 41 #define __STM32L1xx_HAL_IRDA_H
Kojto 90:cb3d968589d8 42
Kojto 90:cb3d968589d8 43 #ifdef __cplusplus
Kojto 90:cb3d968589d8 44 extern "C" {
Kojto 90:cb3d968589d8 45 #endif
Kojto 90:cb3d968589d8 46
Kojto 90:cb3d968589d8 47 /* Includes ------------------------------------------------------------------*/
Kojto 90:cb3d968589d8 48 #include "stm32l1xx_hal_def.h"
Kojto 90:cb3d968589d8 49
Kojto 90:cb3d968589d8 50 /** @addtogroup STM32L1xx_HAL_Driver
Kojto 90:cb3d968589d8 51 * @{
Kojto 90:cb3d968589d8 52 */
Kojto 90:cb3d968589d8 53
Kojto 90:cb3d968589d8 54 /** @addtogroup IRDA
Kojto 90:cb3d968589d8 55 * @{
Kojto 90:cb3d968589d8 56 */
Kojto 90:cb3d968589d8 57
Kojto 90:cb3d968589d8 58 /* Exported types ------------------------------------------------------------*/
Kojto 90:cb3d968589d8 59 /** @defgroup IRDA_Exported_Types IRDA Exported Types
Kojto 90:cb3d968589d8 60 * @{
Kojto 90:cb3d968589d8 61 */
Kojto 90:cb3d968589d8 62
Kojto 90:cb3d968589d8 63 /**
Kojto 90:cb3d968589d8 64 * @brief IRDA Init Structure definition
Kojto 90:cb3d968589d8 65 */
Kojto 90:cb3d968589d8 66 typedef struct
Kojto 90:cb3d968589d8 67 {
Kojto 90:cb3d968589d8 68 uint32_t BaudRate; /*!< This member configures the IRDA communication baud rate.
Kojto 90:cb3d968589d8 69 The baud rate is computed using the following formula:
Kojto 122:f9eeca106725 70 - IntegerDivider = ((PCLKx) / (16 * (hirda->Init.BaudRate)))
Kojto 122:f9eeca106725 71 - FractionalDivider = ((IntegerDivider - ((uint32_t) IntegerDivider)) * 16) + 0.5 */
Kojto 90:cb3d968589d8 72
Kojto 90:cb3d968589d8 73 uint32_t WordLength; /*!< Specifies the number of data bits transmitted or received in a frame.
Kojto 90:cb3d968589d8 74 This parameter can be a value of @ref IRDA_Word_Length */
Kojto 90:cb3d968589d8 75
Kojto 90:cb3d968589d8 76
Kojto 90:cb3d968589d8 77 uint32_t Parity; /*!< Specifies the parity mode.
Kojto 90:cb3d968589d8 78 This parameter can be a value of @ref IRDA_Parity
Kojto 90:cb3d968589d8 79 @note When parity is enabled, the computed parity is inserted
Kojto 90:cb3d968589d8 80 at the MSB position of the transmitted data (9th bit when
Kojto 90:cb3d968589d8 81 the word length is set to 9 data bits; 8th bit when the
Kojto 90:cb3d968589d8 82 word length is set to 8 data bits). */
Kojto 90:cb3d968589d8 83
Kojto 90:cb3d968589d8 84 uint32_t Mode; /*!< Specifies wether the Receive or Transmit mode is enabled or disabled.
Kojto 90:cb3d968589d8 85 This parameter can be a value of @ref IRDA_Transfer_Mode */
Kojto 90:cb3d968589d8 86
Kojto 122:f9eeca106725 87 uint8_t Prescaler; /*!< Specifies the Prescaler value prescaler value to be programmed
Kojto 122:f9eeca106725 88 in the IrDA low-power Baud Register, for defining pulse width on which
Kojto 122:f9eeca106725 89 burst acceptance/rejection will be decided. This value is used as divisor
Kojto 122:f9eeca106725 90 of system clock to achieve required pulse width. */
Kojto 90:cb3d968589d8 91
Kojto 90:cb3d968589d8 92 uint32_t IrDAMode; /*!< Specifies the IrDA mode
Kojto 90:cb3d968589d8 93 This parameter can be a value of @ref IRDA_Low_Power */
Kojto 90:cb3d968589d8 94 }IRDA_InitTypeDef;
Kojto 90:cb3d968589d8 95
Kojto 90:cb3d968589d8 96 /**
Kojto 90:cb3d968589d8 97 * @brief HAL IRDA State structures definition
Kojto 90:cb3d968589d8 98 */
Kojto 90:cb3d968589d8 99 typedef enum
Kojto 90:cb3d968589d8 100 {
Kojto 90:cb3d968589d8 101 HAL_IRDA_STATE_RESET = 0x00, /*!< Peripheral is not initialized */
Kojto 90:cb3d968589d8 102 HAL_IRDA_STATE_READY = 0x01, /*!< Peripheral Initialized and ready for use */
Kojto 90:cb3d968589d8 103 HAL_IRDA_STATE_BUSY = 0x02, /*!< an internal process is ongoing */
Kojto 90:cb3d968589d8 104 HAL_IRDA_STATE_BUSY_TX = 0x12, /*!< Data Transmission process is ongoing */
Kojto 90:cb3d968589d8 105 HAL_IRDA_STATE_BUSY_RX = 0x22, /*!< Data Reception process is ongoing */
Kojto 90:cb3d968589d8 106 HAL_IRDA_STATE_BUSY_TX_RX = 0x32, /*!< Data Transmission and Reception process is ongoing */
Kojto 90:cb3d968589d8 107 HAL_IRDA_STATE_TIMEOUT = 0x03, /*!< Timeout state */
Kojto 90:cb3d968589d8 108 HAL_IRDA_STATE_ERROR = 0x04 /*!< Error */
Kojto 90:cb3d968589d8 109 }HAL_IRDA_StateTypeDef;
Kojto 90:cb3d968589d8 110
Kojto 90:cb3d968589d8 111
Kojto 90:cb3d968589d8 112 /**
Kojto 90:cb3d968589d8 113 * @brief IRDA handle Structure definition
Kojto 90:cb3d968589d8 114 */
Kojto 90:cb3d968589d8 115 typedef struct
Kojto 90:cb3d968589d8 116 {
Kojto 122:f9eeca106725 117 USART_TypeDef *Instance; /*!< USART registers base address */
Kojto 90:cb3d968589d8 118
Kojto 122:f9eeca106725 119 IRDA_InitTypeDef Init; /*!< IRDA communication parameters */
Kojto 90:cb3d968589d8 120
Kojto 122:f9eeca106725 121 uint8_t *pTxBuffPtr; /*!< Pointer to IRDA Tx transfer Buffer */
Kojto 90:cb3d968589d8 122
Kojto 122:f9eeca106725 123 uint16_t TxXferSize; /*!< IRDA Tx Transfer size */
Kojto 90:cb3d968589d8 124
Kojto 122:f9eeca106725 125 uint16_t TxXferCount; /*!< IRDA Tx Transfer Counter */
Kojto 90:cb3d968589d8 126
Kojto 122:f9eeca106725 127 uint8_t *pRxBuffPtr; /*!< Pointer to IRDA Rx transfer Buffer */
Kojto 90:cb3d968589d8 128
Kojto 122:f9eeca106725 129 uint16_t RxXferSize; /*!< IRDA Rx Transfer size */
Kojto 90:cb3d968589d8 130
Kojto 122:f9eeca106725 131 uint16_t RxXferCount; /*!< IRDA Rx Transfer Counter */
Kojto 90:cb3d968589d8 132
Kojto 122:f9eeca106725 133 DMA_HandleTypeDef *hdmatx; /*!< IRDA Tx DMA Handle parameters */
Kojto 90:cb3d968589d8 134
Kojto 122:f9eeca106725 135 DMA_HandleTypeDef *hdmarx; /*!< IRDA Rx DMA Handle parameters */
Kojto 90:cb3d968589d8 136
Kojto 122:f9eeca106725 137 HAL_LockTypeDef Lock; /*!< Locking object */
Kojto 90:cb3d968589d8 138
Kojto 122:f9eeca106725 139 __IO HAL_IRDA_StateTypeDef State; /*!< IRDA communication state */
Kojto 90:cb3d968589d8 140
Kojto 122:f9eeca106725 141 __IO uint32_t ErrorCode; /*!< IRDA Error code */
Kojto 90:cb3d968589d8 142
Kojto 90:cb3d968589d8 143 }IRDA_HandleTypeDef;
Kojto 90:cb3d968589d8 144
Kojto 90:cb3d968589d8 145 /**
Kojto 90:cb3d968589d8 146 * @}
Kojto 90:cb3d968589d8 147 */
Kojto 90:cb3d968589d8 148
Kojto 90:cb3d968589d8 149 /* Exported constants --------------------------------------------------------*/
Kojto 90:cb3d968589d8 150 /** @defgroup IRDA_Exported_Constants IRDA Exported constants
Kojto 90:cb3d968589d8 151 * @{
Kojto 90:cb3d968589d8 152 */
Kojto 90:cb3d968589d8 153
Kojto 122:f9eeca106725 154 /** @defgroup IRDA_Error_Codes IRDA Error Codes
Kojto 90:cb3d968589d8 155 * @{
Kojto 90:cb3d968589d8 156 */
Kojto 122:f9eeca106725 157 #define HAL_IRDA_ERROR_NONE ((uint32_t)0x00) /*!< No error */
Kojto 122:f9eeca106725 158 #define HAL_IRDA_ERROR_PE ((uint32_t)0x01) /*!< Parity error */
Kojto 122:f9eeca106725 159 #define HAL_IRDA_ERROR_NE ((uint32_t)0x02) /*!< Noise error */
Kojto 122:f9eeca106725 160 #define HAL_IRDA_ERROR_FE ((uint32_t)0x04) /*!< frame error */
Kojto 122:f9eeca106725 161 #define HAL_IRDA_ERROR_ORE ((uint32_t)0x08) /*!< Overrun error */
Kojto 122:f9eeca106725 162 #define HAL_IRDA_ERROR_DMA ((uint32_t)0x10) /*!< DMA transfer error */
Kojto 122:f9eeca106725 163
Kojto 90:cb3d968589d8 164 /**
Kojto 90:cb3d968589d8 165 * @}
Kojto 90:cb3d968589d8 166 */
Kojto 90:cb3d968589d8 167
Kojto 90:cb3d968589d8 168
Kojto 122:f9eeca106725 169 /** @defgroup IRDA_Word_Length IRDA Word Length
Kojto 90:cb3d968589d8 170 * @{
Kojto 122:f9eeca106725 171 */
Kojto 122:f9eeca106725 172 #define IRDA_WORDLENGTH_8B ((uint32_t)0x00000000)
Kojto 122:f9eeca106725 173 #define IRDA_WORDLENGTH_9B ((uint32_t)USART_CR1_M)
Kojto 122:f9eeca106725 174 /**
Kojto 122:f9eeca106725 175 * @}
Kojto 122:f9eeca106725 176 */
Kojto 122:f9eeca106725 177
Kojto 122:f9eeca106725 178 /** @defgroup IRDA_Parity IRDA Parity
Kojto 122:f9eeca106725 179 * @{
Kojto 122:f9eeca106725 180 */
Kojto 90:cb3d968589d8 181 #define IRDA_PARITY_NONE ((uint32_t)0x00000000)
Kojto 90:cb3d968589d8 182 #define IRDA_PARITY_EVEN ((uint32_t)USART_CR1_PCE)
Kojto 90:cb3d968589d8 183 #define IRDA_PARITY_ODD ((uint32_t)(USART_CR1_PCE | USART_CR1_PS))
Kojto 90:cb3d968589d8 184 /**
Kojto 90:cb3d968589d8 185 * @}
Kojto 122:f9eeca106725 186 */
Kojto 90:cb3d968589d8 187
Kojto 122:f9eeca106725 188 /** @defgroup IRDA_Transfer_Mode IRDA Transfer Mode
Kojto 90:cb3d968589d8 189 * @{
Kojto 122:f9eeca106725 190 */
Kojto 90:cb3d968589d8 191 #define IRDA_MODE_RX ((uint32_t)USART_CR1_RE)
Kojto 90:cb3d968589d8 192 #define IRDA_MODE_TX ((uint32_t)USART_CR1_TE)
Kojto 90:cb3d968589d8 193 #define IRDA_MODE_TX_RX ((uint32_t)(USART_CR1_TE |USART_CR1_RE))
Kojto 90:cb3d968589d8 194 /**
Kojto 90:cb3d968589d8 195 * @}
Kojto 90:cb3d968589d8 196 */
Kojto 90:cb3d968589d8 197
Kojto 90:cb3d968589d8 198 /** @defgroup IRDA_Low_Power IRDA Low Power
Kojto 90:cb3d968589d8 199 * @{
Kojto 90:cb3d968589d8 200 */
Kojto 122:f9eeca106725 201 #define IRDA_POWERMODE_LOWPOWER ((uint32_t)USART_CR3_IRLP)
Kojto 122:f9eeca106725 202 #define IRDA_POWERMODE_NORMAL ((uint32_t)0x00000000)
Kojto 122:f9eeca106725 203 /**
Kojto 122:f9eeca106725 204 * @}
Kojto 122:f9eeca106725 205 */
Kojto 122:f9eeca106725 206
Kojto 122:f9eeca106725 207 /** @defgroup IRDA_One_Bit IRDA One Bit Sampling
Kojto 122:f9eeca106725 208 * @{
Kojto 122:f9eeca106725 209 */
Kojto 122:f9eeca106725 210 #define IRDA_ONE_BIT_SAMPLE_DISABLE ((uint32_t)0x00000000)
Kojto 122:f9eeca106725 211 #define IRDA_ONE_BIT_SAMPLE_ENABLE ((uint32_t)USART_CR3_ONEBIT)
Kojto 90:cb3d968589d8 212 /**
Kojto 90:cb3d968589d8 213 * @}
Kojto 90:cb3d968589d8 214 */
Kojto 90:cb3d968589d8 215
Kojto 90:cb3d968589d8 216 /** @defgroup IRDA_Flags IRDA Flags
Kojto 90:cb3d968589d8 217 * Elements values convention: 0xXXXX
Kojto 90:cb3d968589d8 218 * - 0xXXXX : Flag mask in the SR register
Kojto 90:cb3d968589d8 219 * @{
Kojto 90:cb3d968589d8 220 */
Kojto 90:cb3d968589d8 221 #define IRDA_FLAG_TXE ((uint32_t)USART_SR_TXE)
Kojto 90:cb3d968589d8 222 #define IRDA_FLAG_TC ((uint32_t)USART_SR_TC)
Kojto 90:cb3d968589d8 223 #define IRDA_FLAG_RXNE ((uint32_t)USART_SR_RXNE)
Kojto 90:cb3d968589d8 224 #define IRDA_FLAG_IDLE ((uint32_t)USART_SR_IDLE)
Kojto 90:cb3d968589d8 225 #define IRDA_FLAG_ORE ((uint32_t)USART_SR_ORE)
Kojto 90:cb3d968589d8 226 #define IRDA_FLAG_NE ((uint32_t)USART_SR_NE)
Kojto 90:cb3d968589d8 227 #define IRDA_FLAG_FE ((uint32_t)USART_SR_FE)
Kojto 90:cb3d968589d8 228 #define IRDA_FLAG_PE ((uint32_t)USART_SR_PE)
Kojto 90:cb3d968589d8 229 /**
Kojto 90:cb3d968589d8 230 * @}
Kojto 90:cb3d968589d8 231 */
Kojto 90:cb3d968589d8 232
Kojto 90:cb3d968589d8 233 /** @defgroup IRDA_Interrupt_definition IRDA Interrupt Definitions
Kojto 90:cb3d968589d8 234 * Elements values convention: 0xY000XXXX
Kojto 122:f9eeca106725 235 * - XXXX : Interrupt mask (16 bits) in the Y register
Kojto 90:cb3d968589d8 236 * - Y : Interrupt source register (4 bits)
Kojto 122:f9eeca106725 237 * - 0001: CR1 register
Kojto 122:f9eeca106725 238 * - 0010: CR2 register
Kojto 122:f9eeca106725 239 * - 0011: CR3 register
Kojto 90:cb3d968589d8 240 *
Kojto 90:cb3d968589d8 241 * @{
Kojto 90:cb3d968589d8 242 */
Kojto 90:cb3d968589d8 243
Kojto 122:f9eeca106725 244 #define IRDA_IT_PE ((uint32_t)(IRDA_CR1_REG_INDEX << 28 | USART_CR1_PEIE))
Kojto 122:f9eeca106725 245 #define IRDA_IT_TXE ((uint32_t)(IRDA_CR1_REG_INDEX << 28 | USART_CR1_TXEIE))
Kojto 122:f9eeca106725 246 #define IRDA_IT_TC ((uint32_t)(IRDA_CR1_REG_INDEX << 28 | USART_CR1_TCIE))
Kojto 122:f9eeca106725 247 #define IRDA_IT_RXNE ((uint32_t)(IRDA_CR1_REG_INDEX << 28 | USART_CR1_RXNEIE))
Kojto 122:f9eeca106725 248 #define IRDA_IT_IDLE ((uint32_t)(IRDA_CR1_REG_INDEX << 28 | USART_CR1_IDLEIE))
Kojto 90:cb3d968589d8 249
Kojto 122:f9eeca106725 250 #define IRDA_IT_LBD ((uint32_t)(IRDA_CR2_REG_INDEX << 28 | USART_CR2_LBDIE))
Kojto 90:cb3d968589d8 251
Kojto 122:f9eeca106725 252 #define IRDA_IT_CTS ((uint32_t)(IRDA_CR3_REG_INDEX << 28 | USART_CR3_CTSIE))
Kojto 122:f9eeca106725 253 #define IRDA_IT_ERR ((uint32_t)(IRDA_CR3_REG_INDEX << 28 | USART_CR3_EIE))
Kojto 90:cb3d968589d8 254
Kojto 90:cb3d968589d8 255 /**
Kojto 90:cb3d968589d8 256 * @}
Kojto 90:cb3d968589d8 257 */
Kojto 90:cb3d968589d8 258
Kojto 90:cb3d968589d8 259 /**
Kojto 90:cb3d968589d8 260 * @}
Kojto 90:cb3d968589d8 261 */
Kojto 122:f9eeca106725 262
Kojto 122:f9eeca106725 263
Kojto 90:cb3d968589d8 264 /* Exported macro ------------------------------------------------------------*/
Kojto 90:cb3d968589d8 265 /** @defgroup IRDA_Exported_Macros IRDA Exported Macros
Kojto 90:cb3d968589d8 266 * @{
Kojto 90:cb3d968589d8 267 */
Kojto 90:cb3d968589d8 268
Kojto 90:cb3d968589d8 269 /** @brief Reset IRDA handle state
Kojto 90:cb3d968589d8 270 * @param __HANDLE__: specifies the IRDA Handle.
Kojto 122:f9eeca106725 271 * IRDA Handle selects the USARTx or UARTy peripheral
Kojto 122:f9eeca106725 272 * (USART,UART availability and x,y values depending on device).
Kojto 90:cb3d968589d8 273 * @retval None
Kojto 90:cb3d968589d8 274 */
Kojto 90:cb3d968589d8 275 #define __HAL_IRDA_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_IRDA_STATE_RESET)
Kojto 90:cb3d968589d8 276
Kojto 122:f9eeca106725 277 /** @brief Flush the IRDA DR register
Kojto 90:cb3d968589d8 278 * @param __HANDLE__: specifies the USART Handle.
Kojto 122:f9eeca106725 279 * IRDA Handle selects the USARTx or UARTy peripheral
Kojto 122:f9eeca106725 280 * (USART,UART availability and x,y values depending on device).
Kojto 90:cb3d968589d8 281 */
Kojto 90:cb3d968589d8 282 #define __HAL_IRDA_FLUSH_DRREGISTER(__HANDLE__) ((__HANDLE__)->Instance->DR)
Kojto 90:cb3d968589d8 283
Kojto 122:f9eeca106725 284 /** @brief Check whether the specified IRDA flag is set or not.
Kojto 90:cb3d968589d8 285 * @param __HANDLE__: specifies the IRDA Handle.
Kojto 122:f9eeca106725 286 * IRDA Handle selects the USARTx or UARTy peripheral
Kojto 122:f9eeca106725 287 * (USART,UART availability and x,y values depending on device).
Kojto 90:cb3d968589d8 288 * @param __FLAG__: specifies the flag to check.
Kojto 90:cb3d968589d8 289 * This parameter can be one of the following values:
Kojto 90:cb3d968589d8 290 * @arg IRDA_FLAG_TXE: Transmit data register empty flag
Kojto 90:cb3d968589d8 291 * @arg IRDA_FLAG_TC: Transmission Complete flag
Kojto 90:cb3d968589d8 292 * @arg IRDA_FLAG_RXNE: Receive data register not empty flag
Kojto 90:cb3d968589d8 293 * @arg IRDA_FLAG_IDLE: Idle Line detection flag
Kojto 90:cb3d968589d8 294 * @arg IRDA_FLAG_ORE: OverRun Error flag
Kojto 90:cb3d968589d8 295 * @arg IRDA_FLAG_NE: Noise Error flag
Kojto 90:cb3d968589d8 296 * @arg IRDA_FLAG_FE: Framing Error flag
Kojto 90:cb3d968589d8 297 * @arg IRDA_FLAG_PE: Parity Error flag
Kojto 90:cb3d968589d8 298 * @retval The new state of __FLAG__ (TRUE or FALSE).
Kojto 90:cb3d968589d8 299 */
Kojto 90:cb3d968589d8 300 #define __HAL_IRDA_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->SR & (__FLAG__)) == (__FLAG__))
Kojto 90:cb3d968589d8 301
Kojto 122:f9eeca106725 302 /** @brief Clear the specified IRDA pending flag.
Kojto 90:cb3d968589d8 303 * @param __HANDLE__: specifies the IRDA Handle.
Kojto 122:f9eeca106725 304 * IRDA Handle selects the USARTx or UARTy peripheral
Kojto 122:f9eeca106725 305 * (USART,UART availability and x,y values depending on device).
Kojto 90:cb3d968589d8 306 * @param __FLAG__: specifies the flag to check.
Kojto 90:cb3d968589d8 307 * This parameter can be any combination of the following values:
Kojto 90:cb3d968589d8 308 * @arg IRDA_FLAG_TC: Transmission Complete flag.
Kojto 90:cb3d968589d8 309 * @arg IRDA_FLAG_RXNE: Receive data register not empty flag.
Kojto 90:cb3d968589d8 310 *
Kojto 90:cb3d968589d8 311 * @note PE (Parity error), FE (Framing error), NE (Noise error), ORE (OverRun
Kojto 90:cb3d968589d8 312 * error) and IDLE (Idle line detected) flags are cleared by software
Kojto 90:cb3d968589d8 313 * sequence: a read operation to USART_SR register followed by a read
Kojto 90:cb3d968589d8 314 * operation to USART_DR register.
Kojto 90:cb3d968589d8 315 * @note RXNE flag can be also cleared by a read to the USART_DR register.
Kojto 90:cb3d968589d8 316 * @note TC flag can be also cleared by software sequence: a read operation to
Kojto 90:cb3d968589d8 317 * USART_SR register followed by a write operation to USART_DR register.
Kojto 90:cb3d968589d8 318 * @note TXE flag is cleared only by a write to the USART_DR register.
Kojto 90:cb3d968589d8 319 *
Kojto 90:cb3d968589d8 320 * @retval None
Kojto 90:cb3d968589d8 321 */
Kojto 90:cb3d968589d8 322 #define __HAL_IRDA_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->SR = ~(__FLAG__))
Kojto 90:cb3d968589d8 323
Kojto 90:cb3d968589d8 324 /** @brief Clear the IRDA PE pending flag.
Kojto 90:cb3d968589d8 325 * @param __HANDLE__: specifies the IRDA Handle.
Kojto 122:f9eeca106725 326 * IRDA Handle selects the USARTx or UARTy peripheral
Kojto 122:f9eeca106725 327 * (USART,UART availability and x,y values depending on device).
Kojto 90:cb3d968589d8 328 * @retval None
Kojto 90:cb3d968589d8 329 */
Kojto 122:f9eeca106725 330 #define __HAL_IRDA_CLEAR_PEFLAG(__HANDLE__) \
Kojto 122:f9eeca106725 331 do{ \
Kojto 122:f9eeca106725 332 __IO uint32_t tmpreg; \
Kojto 122:f9eeca106725 333 tmpreg = (__HANDLE__)->Instance->SR; \
Kojto 122:f9eeca106725 334 tmpreg = (__HANDLE__)->Instance->DR; \
Kojto 122:f9eeca106725 335 UNUSED(tmpreg); \
Kojto 122:f9eeca106725 336 }while(0) \
Kojto 122:f9eeca106725 337
Kojto 90:cb3d968589d8 338 /** @brief Clear the IRDA FE pending flag.
Kojto 90:cb3d968589d8 339 * @param __HANDLE__: specifies the IRDA Handle.
Kojto 122:f9eeca106725 340 * IRDA Handle selects the USARTx or UARTy peripheral
Kojto 122:f9eeca106725 341 * (USART,UART availability and x,y values depending on device).
Kojto 90:cb3d968589d8 342 * @retval None
Kojto 90:cb3d968589d8 343 */
Kojto 90:cb3d968589d8 344 #define __HAL_IRDA_CLEAR_FEFLAG(__HANDLE__) __HAL_IRDA_CLEAR_PEFLAG(__HANDLE__)
Kojto 90:cb3d968589d8 345
Kojto 90:cb3d968589d8 346 /** @brief Clear the IRDA NE pending flag.
Kojto 90:cb3d968589d8 347 * @param __HANDLE__: specifies the IRDA Handle.
Kojto 122:f9eeca106725 348 * IRDA Handle selects the USARTx or UARTy peripheral
Kojto 122:f9eeca106725 349 * (USART,UART availability and x,y values depending on device).
Kojto 90:cb3d968589d8 350 * @retval None
Kojto 90:cb3d968589d8 351 */
Kojto 90:cb3d968589d8 352 #define __HAL_IRDA_CLEAR_NEFLAG(__HANDLE__) __HAL_IRDA_CLEAR_PEFLAG(__HANDLE__)
Kojto 90:cb3d968589d8 353
Kojto 90:cb3d968589d8 354 /** @brief Clear the IRDA ORE pending flag.
Kojto 90:cb3d968589d8 355 * @param __HANDLE__: specifies the IRDA Handle.
Kojto 122:f9eeca106725 356 * IRDA Handle selects the USARTx or UARTy peripheral
Kojto 122:f9eeca106725 357 * (USART,UART availability and x,y values depending on device).
Kojto 90:cb3d968589d8 358 * @retval None
Kojto 90:cb3d968589d8 359 */
Kojto 90:cb3d968589d8 360 #define __HAL_IRDA_CLEAR_OREFLAG(__HANDLE__) __HAL_IRDA_CLEAR_PEFLAG(__HANDLE__)
Kojto 90:cb3d968589d8 361
Kojto 90:cb3d968589d8 362 /** @brief Clear the IRDA IDLE pending flag.
Kojto 90:cb3d968589d8 363 * @param __HANDLE__: specifies the IRDA Handle.
Kojto 122:f9eeca106725 364 * IRDA Handle selects the USARTx or UARTy peripheral
Kojto 122:f9eeca106725 365 * (USART,UART availability and x,y values depending on device).
Kojto 90:cb3d968589d8 366 * @retval None
Kojto 90:cb3d968589d8 367 */
Kojto 90:cb3d968589d8 368 #define __HAL_IRDA_CLEAR_IDLEFLAG(__HANDLE__) __HAL_IRDA_CLEAR_PEFLAG(__HANDLE__)
Kojto 90:cb3d968589d8 369
Kojto 122:f9eeca106725 370 /** @brief Enable the specified IRDA interrupt.
Kojto 90:cb3d968589d8 371 * @param __HANDLE__: specifies the IRDA Handle.
Kojto 122:f9eeca106725 372 * IRDA Handle selects the USARTx or UARTy peripheral
Kojto 122:f9eeca106725 373 * (USART,UART availability and x,y values depending on device).
Kojto 90:cb3d968589d8 374 * @param __INTERRUPT__: specifies the IRDA interrupt source to enable.
Kojto 90:cb3d968589d8 375 * This parameter can be one of the following values:
Kojto 90:cb3d968589d8 376 * @arg IRDA_IT_TXE: Transmit Data Register empty interrupt
Kojto 90:cb3d968589d8 377 * @arg IRDA_IT_TC: Transmission complete interrupt
Kojto 90:cb3d968589d8 378 * @arg IRDA_IT_RXNE: Receive Data register not empty interrupt
Kojto 90:cb3d968589d8 379 * @arg IRDA_IT_IDLE: Idle line detection interrupt
Kojto 90:cb3d968589d8 380 * @arg IRDA_IT_PE: Parity Error interrupt
Kojto 90:cb3d968589d8 381 * @arg IRDA_IT_ERR: Error interrupt(Frame error, noise error, overrun error)
Kojto 90:cb3d968589d8 382 * @retval None
Kojto 90:cb3d968589d8 383 */
Kojto 122:f9eeca106725 384 #define __HAL_IRDA_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((((__INTERRUPT__) >> 28) == IRDA_CR1_REG_INDEX)? ((__HANDLE__)->Instance->CR1 |= ((__INTERRUPT__) & IRDA_IT_MASK)): \
Kojto 122:f9eeca106725 385 (((__INTERRUPT__) >> 28) == IRDA_CR2_REG_INDEX)? ((__HANDLE__)->Instance->CR2 |= ((__INTERRUPT__) & IRDA_IT_MASK)): \
Kojto 122:f9eeca106725 386 ((__HANDLE__)->Instance->CR3 |= ((__INTERRUPT__) & IRDA_IT_MASK)))
Kojto 90:cb3d968589d8 387
Kojto 122:f9eeca106725 388 /** @brief Disable the specified IRDA interrupt.
Kojto 90:cb3d968589d8 389 * @param __HANDLE__: specifies the IRDA Handle.
Kojto 122:f9eeca106725 390 * IRDA Handle selects the USARTx or UARTy peripheral
Kojto 122:f9eeca106725 391 * (USART,UART availability and x,y values depending on device).
Kojto 90:cb3d968589d8 392 * @param __INTERRUPT__: specifies the IRDA interrupt source to disable.
Kojto 90:cb3d968589d8 393 * This parameter can be one of the following values:
Kojto 90:cb3d968589d8 394 * @arg IRDA_IT_TXE: Transmit Data Register empty interrupt
Kojto 90:cb3d968589d8 395 * @arg IRDA_IT_TC: Transmission complete interrupt
Kojto 90:cb3d968589d8 396 * @arg IRDA_IT_RXNE: Receive Data register not empty interrupt
Kojto 90:cb3d968589d8 397 * @arg IRDA_IT_IDLE: Idle line detection interrupt
Kojto 90:cb3d968589d8 398 * @arg IRDA_IT_PE: Parity Error interrupt
Kojto 90:cb3d968589d8 399 * @arg IRDA_IT_ERR: Error interrupt(Frame error, noise error, overrun error)
Kojto 90:cb3d968589d8 400 * @retval None
Kojto 90:cb3d968589d8 401 */
Kojto 122:f9eeca106725 402 #define __HAL_IRDA_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((((__INTERRUPT__) >> 28) == IRDA_CR1_REG_INDEX)? ((__HANDLE__)->Instance->CR1 &= ~((__INTERRUPT__) & IRDA_IT_MASK)): \
Kojto 122:f9eeca106725 403 (((__INTERRUPT__) >> 28) == IRDA_CR2_REG_INDEX)? ((__HANDLE__)->Instance->CR2 &= ~((__INTERRUPT__) & IRDA_IT_MASK)): \
Kojto 122:f9eeca106725 404 ((__HANDLE__)->Instance->CR3 &= ~ ((__INTERRUPT__) & IRDA_IT_MASK)))
Kojto 90:cb3d968589d8 405
Kojto 122:f9eeca106725 406 /** @brief Check whether the specified IRDA interrupt has occurred or not.
Kojto 90:cb3d968589d8 407 * @param __HANDLE__: specifies the IRDA Handle.
Kojto 122:f9eeca106725 408 * IRDA Handle selects the USARTx or UARTy peripheral
Kojto 122:f9eeca106725 409 * (USART,UART availability and x,y values depending on device).
Kojto 90:cb3d968589d8 410 * @param __IT__: specifies the IRDA interrupt source to check.
Kojto 90:cb3d968589d8 411 * This parameter can be one of the following values:
Kojto 90:cb3d968589d8 412 * @arg IRDA_IT_TXE: Transmit Data Register empty interrupt
Kojto 90:cb3d968589d8 413 * @arg IRDA_IT_TC: Transmission complete interrupt
Kojto 90:cb3d968589d8 414 * @arg IRDA_IT_RXNE: Receive Data register not empty interrupt
Kojto 90:cb3d968589d8 415 * @arg IRDA_IT_IDLE: Idle line detection interrupt
Kojto 122:f9eeca106725 416 * @arg IRDA_IT_ERR: Error interrupt
Kojto 90:cb3d968589d8 417 * @arg IRDA_IT_PE: Parity Error interrupt
Kojto 90:cb3d968589d8 418 * @retval The new state of __IT__ (TRUE or FALSE).
Kojto 90:cb3d968589d8 419 */
Kojto 122:f9eeca106725 420 #define __HAL_IRDA_GET_IT_SOURCE(__HANDLE__, __IT__) (((((__IT__) >> 28) == IRDA_CR1_REG_INDEX)? (__HANDLE__)->Instance->CR1:((((__IT__) >> 28) == IRDA_CR2_REG_INDEX)? \
Kojto 90:cb3d968589d8 421 (__HANDLE__)->Instance->CR2 : (__HANDLE__)->Instance->CR3)) & (((uint32_t)(__IT__)) & IRDA_IT_MASK))
Kojto 90:cb3d968589d8 422
Kojto 122:f9eeca106725 423 /** @brief Enables the IRDA one bit sample method
Kojto 122:f9eeca106725 424 * @param __HANDLE__: specifies the IRDA Handle.
Kojto 122:f9eeca106725 425 * @retval None
Kojto 122:f9eeca106725 426 */
Kojto 122:f9eeca106725 427 #define __HAL_IRDA_ONE_BIT_SAMPLE_ENABLE(__HANDLE__) (SET_BIT((__HANDLE__)->Instance->CR3, (USART_CR3_ONEBIT)))
Kojto 122:f9eeca106725 428
Kojto 122:f9eeca106725 429 /** @brief Disables the IRDA one bit sample method
Kojto 122:f9eeca106725 430 * @param __HANDLE__: specifies the IRDA Handle.
Kojto 122:f9eeca106725 431 * @retval None
Kojto 122:f9eeca106725 432 */
Kojto 122:f9eeca106725 433 #define __HAL_IRDA_ONE_BIT_SAMPLE_DISABLE(__HANDLE__) (CLEAR_BIT((__HANDLE__)->Instance->CR3, (USART_CR3_ONEBIT)))
Kojto 122:f9eeca106725 434
Kojto 90:cb3d968589d8 435 /** @brief Enable UART/USART associated to IRDA Handle
Kojto 90:cb3d968589d8 436 * @param __HANDLE__: specifies the IRDA Handle.
Kojto 122:f9eeca106725 437 * IRDA Handle selects the USARTx or UARTy peripheral
Kojto 122:f9eeca106725 438 * (USART,UART availability and x,y values depending on device).
Kojto 90:cb3d968589d8 439 * @retval None
Kojto 90:cb3d968589d8 440 */
Kojto 90:cb3d968589d8 441 #define __HAL_IRDA_ENABLE(__HANDLE__) (SET_BIT((__HANDLE__)->Instance->CR1, USART_CR1_UE))
Kojto 90:cb3d968589d8 442
Kojto 90:cb3d968589d8 443 /** @brief Disable UART/USART associated to IRDA Handle
Kojto 90:cb3d968589d8 444 * @param __HANDLE__: specifies the IRDA Handle.
Kojto 122:f9eeca106725 445 * IRDA Handle selects the USARTx or UARTy peripheral
Kojto 122:f9eeca106725 446 * (USART,UART availability and x,y values depending on device).
Kojto 90:cb3d968589d8 447 * @retval None
Kojto 90:cb3d968589d8 448 */
Kojto 90:cb3d968589d8 449 #define __HAL_IRDA_DISABLE(__HANDLE__) (CLEAR_BIT((__HANDLE__)->Instance->CR1, USART_CR1_UE))
Kojto 90:cb3d968589d8 450
Kojto 90:cb3d968589d8 451 /**
Kojto 90:cb3d968589d8 452 * @}
Kojto 90:cb3d968589d8 453 */
Kojto 90:cb3d968589d8 454
Kojto 90:cb3d968589d8 455 /* Private macros --------------------------------------------------------*/
Kojto 90:cb3d968589d8 456 /** @defgroup IRDA_Private_Macros IRDA Private Macros
Kojto 90:cb3d968589d8 457 * @{
Kojto 90:cb3d968589d8 458 */
Kojto 90:cb3d968589d8 459
Kojto 122:f9eeca106725 460 #define IRDA_CR1_REG_INDEX 1
Kojto 122:f9eeca106725 461 #define IRDA_CR2_REG_INDEX 2
Kojto 122:f9eeca106725 462 #define IRDA_CR3_REG_INDEX 3
Kojto 122:f9eeca106725 463
Kojto 90:cb3d968589d8 464 #define IRDA_DIV(__PCLK__, __BAUD__) (((__PCLK__)*25)/(4*(__BAUD__)))
Kojto 90:cb3d968589d8 465 #define IRDA_DIVMANT(__PCLK__, __BAUD__) (IRDA_DIV((__PCLK__), (__BAUD__))/100)
Kojto 90:cb3d968589d8 466 #define IRDA_DIVFRAQ(__PCLK__, __BAUD__) (((IRDA_DIV((__PCLK__), (__BAUD__)) - (IRDA_DIVMANT((__PCLK__), (__BAUD__)) * 100)) * 16 + 50) / 100)
Kojto 122:f9eeca106725 467 /* UART BRR = mantissa + overflow + fraction
Kojto 122:f9eeca106725 468 = (UART DIVMANT << 4) + (UART DIVFRAQ & 0xF0) + (UART DIVFRAQ & 0x0F) */
Kojto 122:f9eeca106725 469 #define IRDA_BRR(_PCLK_, _BAUD_) (((IRDA_DIVMANT((_PCLK_), (_BAUD_)) << 4) + \
Kojto 122:f9eeca106725 470 (IRDA_DIVFRAQ((_PCLK_), (_BAUD_)) & 0xF0)) + \
Kojto 122:f9eeca106725 471 (IRDA_DIVFRAQ((_PCLK_), (_BAUD_)) & 0x0F))
Kojto 90:cb3d968589d8 472
Kojto 122:f9eeca106725 473 /** Ensure that IRDA Baud rate is less or equal to maximum value
Kojto 122:f9eeca106725 474 * __BAUDRATE__: specifies the IRDA Baudrate set by the user.
Kojto 122:f9eeca106725 475 * The maximum Baud Rate is 115200bps
Kojto 122:f9eeca106725 476 * Returns : True or False
Kojto 90:cb3d968589d8 477 */
Kojto 90:cb3d968589d8 478 #define IS_IRDA_BAUDRATE(__BAUDRATE__) ((__BAUDRATE__) < 115201)
Kojto 122:f9eeca106725 479
Kojto 122:f9eeca106725 480 #define IS_IRDA_WORD_LENGTH(LENGTH) (((LENGTH) == IRDA_WORDLENGTH_8B) || \
Kojto 122:f9eeca106725 481 ((LENGTH) == IRDA_WORDLENGTH_9B))
Kojto 122:f9eeca106725 482
Kojto 122:f9eeca106725 483 #define IS_IRDA_PARITY(PARITY) (((PARITY) == IRDA_PARITY_NONE) || \
Kojto 122:f9eeca106725 484 ((PARITY) == IRDA_PARITY_EVEN) || \
Kojto 122:f9eeca106725 485 ((PARITY) == IRDA_PARITY_ODD))
Kojto 122:f9eeca106725 486
Kojto 122:f9eeca106725 487 #define IS_IRDA_MODE(MODE) ((((MODE) & (~((uint32_t)IRDA_MODE_TX_RX))) == 0x00) && \
Kojto 122:f9eeca106725 488 ((MODE) != (uint32_t)0x00000000))
Kojto 122:f9eeca106725 489
Kojto 122:f9eeca106725 490 #define IS_IRDA_POWERMODE(MODE) (((MODE) == IRDA_POWERMODE_LOWPOWER) || \
Kojto 122:f9eeca106725 491 ((MODE) == IRDA_POWERMODE_NORMAL))
Kojto 122:f9eeca106725 492
Kojto 122:f9eeca106725 493 /** IRDA interruptions flag mask
Kojto 122:f9eeca106725 494 *
Kojto 122:f9eeca106725 495 */
Kojto 122:f9eeca106725 496 #define IRDA_IT_MASK ((uint32_t) USART_CR1_PEIE | USART_CR1_TXEIE | USART_CR1_TCIE | USART_CR1_RXNEIE | \
Kojto 122:f9eeca106725 497 USART_CR1_IDLEIE | USART_CR2_LBDIE | USART_CR3_CTSIE | USART_CR3_EIE )
Kojto 122:f9eeca106725 498
Kojto 90:cb3d968589d8 499 /**
Kojto 90:cb3d968589d8 500 * @}
Kojto 90:cb3d968589d8 501 */
Kojto 90:cb3d968589d8 502
Kojto 90:cb3d968589d8 503
Kojto 90:cb3d968589d8 504 /* Exported functions --------------------------------------------------------*/
Kojto 90:cb3d968589d8 505
Kojto 90:cb3d968589d8 506 /** @addtogroup IRDA_Exported_Functions IRDA Exported Functions
Kojto 90:cb3d968589d8 507 * @{
Kojto 90:cb3d968589d8 508 */
Kojto 90:cb3d968589d8 509
Kojto 122:f9eeca106725 510 /** @addtogroup IRDA_Exported_Functions_Group1 Initialization and de-initialization functions
Kojto 90:cb3d968589d8 511 * @{
Kojto 90:cb3d968589d8 512 */
Kojto 90:cb3d968589d8 513
Kojto 90:cb3d968589d8 514 /* Initialization and de-initialization functions ****************************/
Kojto 90:cb3d968589d8 515 HAL_StatusTypeDef HAL_IRDA_Init(IRDA_HandleTypeDef *hirda);
Kojto 90:cb3d968589d8 516 HAL_StatusTypeDef HAL_IRDA_DeInit(IRDA_HandleTypeDef *hirda);
Kojto 90:cb3d968589d8 517 void HAL_IRDA_MspInit(IRDA_HandleTypeDef *hirda);
Kojto 90:cb3d968589d8 518 void HAL_IRDA_MspDeInit(IRDA_HandleTypeDef *hirda);
Kojto 90:cb3d968589d8 519
Kojto 90:cb3d968589d8 520 /**
Kojto 90:cb3d968589d8 521 * @}
Kojto 90:cb3d968589d8 522 */
Kojto 90:cb3d968589d8 523
Kojto 90:cb3d968589d8 524 /** @addtogroup IRDA_Exported_Functions_Group2 IO operation functions
Kojto 90:cb3d968589d8 525 * @{
Kojto 90:cb3d968589d8 526 */
Kojto 90:cb3d968589d8 527
Kojto 90:cb3d968589d8 528 /* IO operation functions *****************************************************/
Kojto 90:cb3d968589d8 529 HAL_StatusTypeDef HAL_IRDA_Transmit(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size, uint32_t Timeout);
Kojto 90:cb3d968589d8 530 HAL_StatusTypeDef HAL_IRDA_Receive(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size, uint32_t Timeout);
Kojto 90:cb3d968589d8 531 HAL_StatusTypeDef HAL_IRDA_Transmit_IT(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size);
Kojto 90:cb3d968589d8 532 HAL_StatusTypeDef HAL_IRDA_Receive_IT(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size);
Kojto 90:cb3d968589d8 533 HAL_StatusTypeDef HAL_IRDA_Transmit_DMA(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size);
Kojto 90:cb3d968589d8 534 HAL_StatusTypeDef HAL_IRDA_Receive_DMA(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size);
Kojto 90:cb3d968589d8 535 HAL_StatusTypeDef HAL_IRDA_DMAPause(IRDA_HandleTypeDef *hirda);
Kojto 90:cb3d968589d8 536 HAL_StatusTypeDef HAL_IRDA_DMAResume(IRDA_HandleTypeDef *hirda);
Kojto 90:cb3d968589d8 537 HAL_StatusTypeDef HAL_IRDA_DMAStop(IRDA_HandleTypeDef *hirda);
Kojto 90:cb3d968589d8 538 void HAL_IRDA_IRQHandler(IRDA_HandleTypeDef *hirda);
Kojto 90:cb3d968589d8 539 void HAL_IRDA_TxCpltCallback(IRDA_HandleTypeDef *hirda);
Kojto 90:cb3d968589d8 540 void HAL_IRDA_RxCpltCallback(IRDA_HandleTypeDef *hirda);
Kojto 90:cb3d968589d8 541 void HAL_IRDA_TxHalfCpltCallback(IRDA_HandleTypeDef *hirda);
Kojto 90:cb3d968589d8 542 void HAL_IRDA_RxHalfCpltCallback(IRDA_HandleTypeDef *hirda);
Kojto 90:cb3d968589d8 543 void HAL_IRDA_ErrorCallback(IRDA_HandleTypeDef *hirda);
Kojto 90:cb3d968589d8 544
Kojto 90:cb3d968589d8 545 /**
Kojto 90:cb3d968589d8 546 * @}
Kojto 90:cb3d968589d8 547 */
Kojto 90:cb3d968589d8 548
Kojto 90:cb3d968589d8 549 /** @addtogroup IRDA_Exported_Functions_Group3 Peripheral State and Errors functions
Kojto 90:cb3d968589d8 550 * @{
Kojto 90:cb3d968589d8 551 */
Kojto 90:cb3d968589d8 552
Kojto 90:cb3d968589d8 553 /* Peripheral State and Error functions ***************************************/
Kojto 90:cb3d968589d8 554 HAL_IRDA_StateTypeDef HAL_IRDA_GetState(IRDA_HandleTypeDef *hirda);
Kojto 90:cb3d968589d8 555 uint32_t HAL_IRDA_GetError(IRDA_HandleTypeDef *hirda);
Kojto 90:cb3d968589d8 556
Kojto 90:cb3d968589d8 557 /**
Kojto 90:cb3d968589d8 558 * @}
Kojto 90:cb3d968589d8 559 */
Kojto 90:cb3d968589d8 560
Kojto 90:cb3d968589d8 561 /**
Kojto 90:cb3d968589d8 562 * @}
Kojto 90:cb3d968589d8 563 */
Kojto 90:cb3d968589d8 564
Kojto 90:cb3d968589d8 565 /**
Kojto 90:cb3d968589d8 566 * @}
Kojto 90:cb3d968589d8 567 */
Kojto 90:cb3d968589d8 568
Kojto 90:cb3d968589d8 569 /**
Kojto 90:cb3d968589d8 570 * @}
Kojto 90:cb3d968589d8 571 */
Kojto 90:cb3d968589d8 572
Kojto 90:cb3d968589d8 573 #ifdef __cplusplus
Kojto 90:cb3d968589d8 574 }
Kojto 90:cb3d968589d8 575 #endif
Kojto 90:cb3d968589d8 576
Kojto 90:cb3d968589d8 577 #endif /* __STM32L1xx_HAL_IRDA_H */
Kojto 90:cb3d968589d8 578
Kojto 90:cb3d968589d8 579 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/