The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
Kojto
Date:
Thu Jul 07 14:34:11 2016 +0100
Revision:
122:f9eeca106725
Parent:
110:165afa46840b
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
bogdanm 89:552587b429a1 1 /**
bogdanm 89:552587b429a1 2 ******************************************************************************
bogdanm 89:552587b429a1 3 * @file stm32f4xx_hal_irda.h
bogdanm 89:552587b429a1 4 * @author MCD Application Team
Kojto 122:f9eeca106725 5 * @version V1.5.0
Kojto 122:f9eeca106725 6 * @date 06-May-2016
bogdanm 89:552587b429a1 7 * @brief Header file of IRDA HAL module.
bogdanm 89:552587b429a1 8 ******************************************************************************
bogdanm 89:552587b429a1 9 * @attention
bogdanm 89:552587b429a1 10 *
Kojto 122:f9eeca106725 11 * <h2><center>&copy; COPYRIGHT(c) 2016 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_IRDA_H
bogdanm 89:552587b429a1 40 #define __STM32F4xx_HAL_IRDA_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 IRDA
bogdanm 89:552587b429a1 54 * @{
bogdanm 89:552587b429a1 55 */
bogdanm 89:552587b429a1 56
bogdanm 89:552587b429a1 57 /* Exported types ------------------------------------------------------------*/
Kojto 99:dbbf35b96557 58 /** @defgroup IRDA_Exported_Types IRDA Exported Types
Kojto 99:dbbf35b96557 59 * @{
Kojto 99:dbbf35b96557 60 */
bogdanm 89:552587b429a1 61 /**
bogdanm 89:552587b429a1 62 * @brief IRDA Init Structure definition
bogdanm 89:552587b429a1 63 */
bogdanm 89:552587b429a1 64 typedef struct
bogdanm 89:552587b429a1 65 {
bogdanm 89:552587b429a1 66 uint32_t BaudRate; /*!< This member configures the IRDA communication baud rate.
bogdanm 89:552587b429a1 67 The baud rate is computed using the following formula:
bogdanm 89:552587b429a1 68 - IntegerDivider = ((PCLKx) / (8 * (hirda->Init.BaudRate)))
bogdanm 89:552587b429a1 69 - FractionalDivider = ((IntegerDivider - ((uint32_t) IntegerDivider)) * 8) + 0.5 */
bogdanm 89:552587b429a1 70
bogdanm 89:552587b429a1 71 uint32_t WordLength; /*!< Specifies the number of data bits transmitted or received in a frame.
bogdanm 89:552587b429a1 72 This parameter can be a value of @ref IRDA_Word_Length */
bogdanm 89:552587b429a1 73
bogdanm 89:552587b429a1 74 uint32_t Parity; /*!< Specifies the parity mode.
bogdanm 89:552587b429a1 75 This parameter can be a value of @ref IRDA_Parity
bogdanm 89:552587b429a1 76 @note When parity is enabled, the computed parity is inserted
bogdanm 89:552587b429a1 77 at the MSB position of the transmitted data (9th bit when
bogdanm 89:552587b429a1 78 the word length is set to 9 data bits; 8th bit when the
bogdanm 89:552587b429a1 79 word length is set to 8 data bits). */
bogdanm 89:552587b429a1 80
bogdanm 89:552587b429a1 81 uint32_t Mode; /*!< Specifies wether the Receive or Transmit mode is enabled or disabled.
bogdanm 89:552587b429a1 82 This parameter can be a value of @ref IRDA_Mode */
Kojto 122:f9eeca106725 83
bogdanm 89:552587b429a1 84 uint8_t Prescaler; /*!< Specifies the Prescaler */
Kojto 122:f9eeca106725 85
bogdanm 89:552587b429a1 86 uint32_t IrDAMode; /*!< Specifies the IrDA mode
Kojto 99:dbbf35b96557 87 This parameter can be a value of @ref IRDA_Low_Power */
bogdanm 89:552587b429a1 88 }IRDA_InitTypeDef;
bogdanm 89:552587b429a1 89
bogdanm 89:552587b429a1 90 /**
Kojto 122:f9eeca106725 91 * @brief HAL IRDA State structures definition
Kojto 122:f9eeca106725 92 * @note HAL IRDA State value is a combination of 2 different substates: gState and RxState.
Kojto 122:f9eeca106725 93 * - gState contains IRDA state information related to global Handle management
Kojto 122:f9eeca106725 94 * and also information related to Tx operations.
Kojto 122:f9eeca106725 95 * gState value coding follow below described bitmap :
Kojto 122:f9eeca106725 96 * b7-b6 Error information
Kojto 122:f9eeca106725 97 * 00 : No Error
Kojto 122:f9eeca106725 98 * 01 : (Not Used)
Kojto 122:f9eeca106725 99 * 10 : Timeout
Kojto 122:f9eeca106725 100 * 11 : Error
Kojto 122:f9eeca106725 101 * b5 IP initilisation status
Kojto 122:f9eeca106725 102 * 0 : Reset (IP not initialized)
Kojto 122:f9eeca106725 103 * 1 : Init done (IP not initialized. HAL IRDA Init function already called)
Kojto 122:f9eeca106725 104 * b4-b3 (not used)
Kojto 122:f9eeca106725 105 * xx : Should be set to 00
Kojto 122:f9eeca106725 106 * b2 Intrinsic process state
Kojto 122:f9eeca106725 107 * 0 : Ready
Kojto 122:f9eeca106725 108 * 1 : Busy (IP busy with some configuration or internal operations)
Kojto 122:f9eeca106725 109 * b1 (not used)
Kojto 122:f9eeca106725 110 * x : Should be set to 0
Kojto 122:f9eeca106725 111 * b0 Tx state
Kojto 122:f9eeca106725 112 * 0 : Ready (no Tx operation ongoing)
Kojto 122:f9eeca106725 113 * 1 : Busy (Tx operation ongoing)
Kojto 122:f9eeca106725 114 * - RxState contains information related to Rx operations.
Kojto 122:f9eeca106725 115 * RxState value coding follow below described bitmap :
Kojto 122:f9eeca106725 116 * b7-b6 (not used)
Kojto 122:f9eeca106725 117 * xx : Should be set to 00
Kojto 122:f9eeca106725 118 * b5 IP initilisation status
Kojto 122:f9eeca106725 119 * 0 : Reset (IP not initialized)
Kojto 122:f9eeca106725 120 * 1 : Init done (IP not initialized)
Kojto 122:f9eeca106725 121 * b4-b2 (not used)
Kojto 122:f9eeca106725 122 * xxx : Should be set to 000
Kojto 122:f9eeca106725 123 * b1 Rx state
Kojto 122:f9eeca106725 124 * 0 : Ready (no Rx operation ongoing)
Kojto 122:f9eeca106725 125 * 1 : Busy (Rx operation ongoing)
Kojto 122:f9eeca106725 126 * b0 (not used)
Kojto 122:f9eeca106725 127 * x : Should be set to 0.
bogdanm 89:552587b429a1 128 */
bogdanm 89:552587b429a1 129 typedef enum
bogdanm 89:552587b429a1 130 {
Kojto 122:f9eeca106725 131 HAL_IRDA_STATE_RESET = 0x00U, /*!< Peripheral is not yet Initialized
Kojto 122:f9eeca106725 132 Value is allowed for gState and RxState */
Kojto 122:f9eeca106725 133 HAL_IRDA_STATE_READY = 0x20U, /*!< Peripheral Initialized and ready for use
Kojto 122:f9eeca106725 134 Value is allowed for gState and RxState */
Kojto 122:f9eeca106725 135 HAL_IRDA_STATE_BUSY = 0x24U, /*!< An internal process is ongoing
Kojto 122:f9eeca106725 136 Value is allowed for gState only */
Kojto 122:f9eeca106725 137 HAL_IRDA_STATE_BUSY_TX = 0x21U, /*!< Data Transmission process is ongoing
Kojto 122:f9eeca106725 138 Value is allowed for gState only */
Kojto 122:f9eeca106725 139 HAL_IRDA_STATE_BUSY_RX = 0x22U, /*!< Data Reception process is ongoing
Kojto 122:f9eeca106725 140 Value is allowed for RxState only */
Kojto 122:f9eeca106725 141 HAL_IRDA_STATE_BUSY_TX_RX = 0x23U, /*!< Data Transmission and Reception process is ongoing
Kojto 122:f9eeca106725 142 Not to be used for neither gState nor RxState.
Kojto 122:f9eeca106725 143 Value is result of combination (Or) between gState and RxState values */
Kojto 122:f9eeca106725 144 HAL_IRDA_STATE_TIMEOUT = 0xA0U, /*!< Timeout state
Kojto 122:f9eeca106725 145 Value is allowed for gState only */
Kojto 122:f9eeca106725 146 HAL_IRDA_STATE_ERROR = 0xE0U /*!< Error
Kojto 122:f9eeca106725 147 Value is allowed for gState only */
bogdanm 89:552587b429a1 148 }HAL_IRDA_StateTypeDef;
bogdanm 89:552587b429a1 149
bogdanm 89:552587b429a1 150 /**
Kojto 99:dbbf35b96557 151 * @brief IRDA handle Structure definition
bogdanm 89:552587b429a1 152 */
bogdanm 89:552587b429a1 153 typedef struct
bogdanm 89:552587b429a1 154 {
bogdanm 89:552587b429a1 155 USART_TypeDef *Instance; /* USART registers base address */
Kojto 122:f9eeca106725 156
bogdanm 89:552587b429a1 157 IRDA_InitTypeDef Init; /* IRDA communication parameters */
Kojto 122:f9eeca106725 158
bogdanm 89:552587b429a1 159 uint8_t *pTxBuffPtr; /* Pointer to IRDA Tx transfer Buffer */
Kojto 122:f9eeca106725 160
bogdanm 89:552587b429a1 161 uint16_t TxXferSize; /* IRDA Tx Transfer size */
Kojto 122:f9eeca106725 162
bogdanm 89:552587b429a1 163 uint16_t TxXferCount; /* IRDA Tx Transfer Counter */
Kojto 122:f9eeca106725 164
bogdanm 89:552587b429a1 165 uint8_t *pRxBuffPtr; /* Pointer to IRDA Rx transfer Buffer */
Kojto 122:f9eeca106725 166
bogdanm 89:552587b429a1 167 uint16_t RxXferSize; /* IRDA Rx Transfer size */
Kojto 122:f9eeca106725 168
Kojto 122:f9eeca106725 169 uint16_t RxXferCount; /* IRDA Rx Transfer Counter */
Kojto 122:f9eeca106725 170
bogdanm 89:552587b429a1 171 DMA_HandleTypeDef *hdmatx; /* IRDA Tx DMA Handle parameters */
Kojto 122:f9eeca106725 172
bogdanm 89:552587b429a1 173 DMA_HandleTypeDef *hdmarx; /* IRDA Rx DMA Handle parameters */
Kojto 122:f9eeca106725 174
Kojto 99:dbbf35b96557 175 HAL_LockTypeDef Lock; /* Locking object */
Kojto 122:f9eeca106725 176
Kojto 122:f9eeca106725 177 __IO HAL_IRDA_StateTypeDef gState; /* IRDA state information related to global Handle management
Kojto 122:f9eeca106725 178 and also related to Tx operations.
Kojto 122:f9eeca106725 179 This parameter can be a value of @ref HAL_IRDA_StateTypeDef */
Kojto 122:f9eeca106725 180
Kojto 122:f9eeca106725 181 __IO HAL_IRDA_StateTypeDef RxState; /* IRDA state information related to Rx operations.
Kojto 122:f9eeca106725 182 This parameter can be a value of @ref HAL_IRDA_StateTypeDef */
Kojto 122:f9eeca106725 183
Kojto 99:dbbf35b96557 184 __IO uint32_t ErrorCode; /* IRDA Error code */
Kojto 99:dbbf35b96557 185
bogdanm 89:552587b429a1 186 }IRDA_HandleTypeDef;
Kojto 99:dbbf35b96557 187 /**
Kojto 99:dbbf35b96557 188 * @}
Kojto 99:dbbf35b96557 189 */
bogdanm 89:552587b429a1 190
bogdanm 89:552587b429a1 191 /* Exported constants --------------------------------------------------------*/
Kojto 99:dbbf35b96557 192 /** @defgroup IRDA_Exported_Constants IRDA Exported constants
bogdanm 89:552587b429a1 193 * @{
bogdanm 89:552587b429a1 194 */
Kojto 99:dbbf35b96557 195 /** @defgroup IRDA_Error_Code IRDA Error Code
Kojto 99:dbbf35b96557 196 * @brief IRDA Error Code
Kojto 99:dbbf35b96557 197 * @{
Kojto 99:dbbf35b96557 198 */
Kojto 122:f9eeca106725 199 #define HAL_IRDA_ERROR_NONE ((uint32_t)0x00000000U) /*!< No error */
Kojto 122:f9eeca106725 200 #define HAL_IRDA_ERROR_PE ((uint32_t)0x00000001U) /*!< Parity error */
Kojto 122:f9eeca106725 201 #define HAL_IRDA_ERROR_NE ((uint32_t)0x00000002U) /*!< Noise error */
Kojto 122:f9eeca106725 202 #define HAL_IRDA_ERROR_FE ((uint32_t)0x00000004U) /*!< Frame error */
Kojto 122:f9eeca106725 203 #define HAL_IRDA_ERROR_ORE ((uint32_t)0x00000008U) /*!< Overrun error */
Kojto 122:f9eeca106725 204 #define HAL_IRDA_ERROR_DMA ((uint32_t)0x00000010U) /*!< DMA transfer error */
Kojto 99:dbbf35b96557 205 /**
Kojto 99:dbbf35b96557 206 * @}
Kojto 99:dbbf35b96557 207 */
bogdanm 89:552587b429a1 208
Kojto 99:dbbf35b96557 209 /** @defgroup IRDA_Word_Length IRDA Word Length
bogdanm 89:552587b429a1 210 * @{
bogdanm 89:552587b429a1 211 */
Kojto 122:f9eeca106725 212 #define IRDA_WORDLENGTH_8B ((uint32_t)0x00000000U)
bogdanm 89:552587b429a1 213 #define IRDA_WORDLENGTH_9B ((uint32_t)USART_CR1_M)
bogdanm 89:552587b429a1 214 /**
bogdanm 89:552587b429a1 215 * @}
bogdanm 89:552587b429a1 216 */
bogdanm 89:552587b429a1 217
Kojto 99:dbbf35b96557 218 /** @defgroup IRDA_Parity IRDA Parity
bogdanm 89:552587b429a1 219 * @{
bogdanm 89:552587b429a1 220 */
Kojto 122:f9eeca106725 221 #define IRDA_PARITY_NONE ((uint32_t)0x00000000U)
bogdanm 89:552587b429a1 222 #define IRDA_PARITY_EVEN ((uint32_t)USART_CR1_PCE)
bogdanm 89:552587b429a1 223 #define IRDA_PARITY_ODD ((uint32_t)(USART_CR1_PCE | USART_CR1_PS))
bogdanm 89:552587b429a1 224 /**
bogdanm 89:552587b429a1 225 * @}
bogdanm 89:552587b429a1 226 */
bogdanm 89:552587b429a1 227
Kojto 99:dbbf35b96557 228 /** @defgroup IRDA_Mode IRDA Transfer Mode
bogdanm 89:552587b429a1 229 * @{
bogdanm 89:552587b429a1 230 */
bogdanm 89:552587b429a1 231 #define IRDA_MODE_RX ((uint32_t)USART_CR1_RE)
bogdanm 89:552587b429a1 232 #define IRDA_MODE_TX ((uint32_t)USART_CR1_TE)
bogdanm 89:552587b429a1 233 #define IRDA_MODE_TX_RX ((uint32_t)(USART_CR1_TE |USART_CR1_RE))
bogdanm 89:552587b429a1 234 /**
bogdanm 89:552587b429a1 235 * @}
bogdanm 89:552587b429a1 236 */
bogdanm 89:552587b429a1 237
Kojto 99:dbbf35b96557 238 /** @defgroup IRDA_Low_Power IRDA Low Power
bogdanm 89:552587b429a1 239 * @{
bogdanm 89:552587b429a1 240 */
bogdanm 89:552587b429a1 241 #define IRDA_POWERMODE_LOWPOWER ((uint32_t)USART_CR3_IRLP)
Kojto 122:f9eeca106725 242 #define IRDA_POWERMODE_NORMAL ((uint32_t)0x00000000U)
bogdanm 89:552587b429a1 243 /**
bogdanm 89:552587b429a1 244 * @}
bogdanm 89:552587b429a1 245 */
bogdanm 89:552587b429a1 246
Kojto 99:dbbf35b96557 247 /** @defgroup IRDA_Flags IRDA Flags
bogdanm 89:552587b429a1 248 * Elements values convention: 0xXXXX
bogdanm 89:552587b429a1 249 * - 0xXXXX : Flag mask in the SR register
bogdanm 89:552587b429a1 250 * @{
bogdanm 89:552587b429a1 251 */
Kojto 122:f9eeca106725 252 #define IRDA_FLAG_TXE ((uint32_t)0x00000080U)
Kojto 122:f9eeca106725 253 #define IRDA_FLAG_TC ((uint32_t)0x00000040U)
Kojto 122:f9eeca106725 254 #define IRDA_FLAG_RXNE ((uint32_t)0x00000020U)
Kojto 122:f9eeca106725 255 #define IRDA_FLAG_IDLE ((uint32_t)0x00000010U)
Kojto 122:f9eeca106725 256 #define IRDA_FLAG_ORE ((uint32_t)0x00000008U)
Kojto 122:f9eeca106725 257 #define IRDA_FLAG_NE ((uint32_t)0x00000004U)
Kojto 122:f9eeca106725 258 #define IRDA_FLAG_FE ((uint32_t)0x00000002U)
Kojto 122:f9eeca106725 259 #define IRDA_FLAG_PE ((uint32_t)0x00000001U)
bogdanm 89:552587b429a1 260 /**
bogdanm 89:552587b429a1 261 * @}
bogdanm 89:552587b429a1 262 */
bogdanm 89:552587b429a1 263
Kojto 99:dbbf35b96557 264 /** @defgroup IRDA_Interrupt_definition IRDA Interrupt Definitions
bogdanm 89:552587b429a1 265 * Elements values convention: 0xY000XXXX
bogdanm 89:552587b429a1 266 * - XXXX : Interrupt mask in the XX register
bogdanm 89:552587b429a1 267 * - Y : Interrupt source register (2bits)
bogdanm 89:552587b429a1 268 * - 01: CR1 register
bogdanm 89:552587b429a1 269 * - 10: CR2 register
bogdanm 89:552587b429a1 270 * - 11: CR3 register
bogdanm 89:552587b429a1 271 * @{
bogdanm 89:552587b429a1 272 */
Kojto 122:f9eeca106725 273 #define IRDA_IT_PE ((uint32_t)(IRDA_CR1_REG_INDEX << 28U | USART_CR1_PEIE))
Kojto 122:f9eeca106725 274 #define IRDA_IT_TXE ((uint32_t)(IRDA_CR1_REG_INDEX << 28U | USART_CR1_TXEIE))
Kojto 122:f9eeca106725 275 #define IRDA_IT_TC ((uint32_t)(IRDA_CR1_REG_INDEX << 28U | USART_CR1_TCIE))
Kojto 122:f9eeca106725 276 #define IRDA_IT_RXNE ((uint32_t)(IRDA_CR1_REG_INDEX << 28U | USART_CR1_RXNEIE))
Kojto 122:f9eeca106725 277 #define IRDA_IT_IDLE ((uint32_t)(IRDA_CR1_REG_INDEX << 28U | USART_CR1_IDLEIE))
bogdanm 89:552587b429a1 278
Kojto 122:f9eeca106725 279 #define IRDA_IT_LBD ((uint32_t)(IRDA_CR2_REG_INDEX << 28U | USART_CR2_LBDIE))
bogdanm 89:552587b429a1 280
Kojto 122:f9eeca106725 281 #define IRDA_IT_CTS ((uint32_t)(IRDA_CR3_REG_INDEX << 28U | USART_CR3_CTSIE))
Kojto 122:f9eeca106725 282 #define IRDA_IT_ERR ((uint32_t)(IRDA_CR3_REG_INDEX << 28U | USART_CR3_EIE))
bogdanm 89:552587b429a1 283 /**
bogdanm 89:552587b429a1 284 * @}
bogdanm 89:552587b429a1 285 */
bogdanm 89:552587b429a1 286
bogdanm 89:552587b429a1 287 /**
bogdanm 89:552587b429a1 288 * @}
bogdanm 89:552587b429a1 289 */
bogdanm 89:552587b429a1 290
bogdanm 89:552587b429a1 291 /* Exported macro ------------------------------------------------------------*/
Kojto 99:dbbf35b96557 292 /** @defgroup IRDA_Exported_Macros IRDA Exported Macros
Kojto 99:dbbf35b96557 293 * @{
Kojto 99:dbbf35b96557 294 */
bogdanm 89:552587b429a1 295
Kojto 122:f9eeca106725 296 /** @brief Reset IRDA handle gstate & RxState
bogdanm 92:4fc01daae5a5 297 * @param __HANDLE__: specifies the USART Handle.
bogdanm 92:4fc01daae5a5 298 * This parameter can be USARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
bogdanm 92:4fc01daae5a5 299 * UART peripheral.
bogdanm 89:552587b429a1 300 * @retval None
bogdanm 89:552587b429a1 301 */
Kojto 122:f9eeca106725 302 #define __HAL_IRDA_RESET_HANDLE_STATE(__HANDLE__) do{ \
Kojto 122:f9eeca106725 303 (__HANDLE__)->gState = HAL_IRDA_STATE_RESET; \
Kojto 122:f9eeca106725 304 (__HANDLE__)->RxState = HAL_IRDA_STATE_RESET; \
Kojto 122:f9eeca106725 305 } while(0)
bogdanm 89:552587b429a1 306
bogdanm 89:552587b429a1 307 /** @brief Flushs the IRDA DR register
bogdanm 92:4fc01daae5a5 308 * @param __HANDLE__: specifies the USART Handle.
bogdanm 92:4fc01daae5a5 309 * This parameter can be USARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
bogdanm 92:4fc01daae5a5 310 * UART peripheral.
bogdanm 89:552587b429a1 311 */
bogdanm 89:552587b429a1 312 #define __HAL_IRDA_FLUSH_DRREGISTER(__HANDLE__) ((__HANDLE__)->Instance->DR)
bogdanm 89:552587b429a1 313
bogdanm 89:552587b429a1 314 /** @brief Checks whether the specified IRDA flag is set or not.
bogdanm 89:552587b429a1 315 * @param __HANDLE__: specifies the USART Handle.
bogdanm 89:552587b429a1 316 * This parameter can be USARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
bogdanm 89:552587b429a1 317 * UART peripheral.
bogdanm 89:552587b429a1 318 * @param __FLAG__: specifies the flag to check.
bogdanm 89:552587b429a1 319 * This parameter can be one of the following values:
bogdanm 89:552587b429a1 320 * @arg IRDA_FLAG_TXE: Transmit data register empty flag
bogdanm 89:552587b429a1 321 * @arg IRDA_FLAG_TC: Transmission Complete flag
bogdanm 89:552587b429a1 322 * @arg IRDA_FLAG_RXNE: Receive data register not empty flag
bogdanm 89:552587b429a1 323 * @arg IRDA_FLAG_IDLE: Idle Line detection flag
bogdanm 89:552587b429a1 324 * @arg IRDA_FLAG_ORE: OverRun Error flag
bogdanm 89:552587b429a1 325 * @arg IRDA_FLAG_NE: Noise Error flag
bogdanm 89:552587b429a1 326 * @arg IRDA_FLAG_FE: Framing Error flag
bogdanm 89:552587b429a1 327 * @arg IRDA_FLAG_PE: Parity Error flag
bogdanm 89:552587b429a1 328 * @retval The new state of __FLAG__ (TRUE or FALSE).
bogdanm 89:552587b429a1 329 */
bogdanm 89:552587b429a1 330 #define __HAL_IRDA_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->SR & (__FLAG__)) == (__FLAG__))
bogdanm 89:552587b429a1 331
bogdanm 89:552587b429a1 332 /** @brief Clears the specified IRDA pending flag.
bogdanm 89:552587b429a1 333 * @param __HANDLE__: specifies the USART Handle.
bogdanm 89:552587b429a1 334 * This parameter can be USARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
bogdanm 89:552587b429a1 335 * UART peripheral.
bogdanm 89:552587b429a1 336 * @param __FLAG__: specifies the flag to check.
bogdanm 89:552587b429a1 337 * This parameter can be any combination of the following values:
bogdanm 89:552587b429a1 338 * @arg IRDA_FLAG_TC: Transmission Complete flag.
bogdanm 89:552587b429a1 339 * @arg IRDA_FLAG_RXNE: Receive data register not empty flag.
bogdanm 89:552587b429a1 340 *
bogdanm 89:552587b429a1 341 * @note PE (Parity error), FE (Framing error), NE (Noise error), ORE (OverRun
bogdanm 89:552587b429a1 342 * error) and IDLE (Idle line detected) flags are cleared by software
bogdanm 89:552587b429a1 343 * sequence: a read operation to USART_SR register followed by a read
bogdanm 89:552587b429a1 344 * operation to USART_DR register.
bogdanm 89:552587b429a1 345 * @note RXNE flag can be also cleared by a read to the USART_DR register.
bogdanm 89:552587b429a1 346 * @note TC flag can be also cleared by software sequence: a read operation to
bogdanm 89:552587b429a1 347 * USART_SR register followed by a write operation to USART_DR register.
bogdanm 89:552587b429a1 348 * @note TXE flag is cleared only by a write to the USART_DR register.
bogdanm 89:552587b429a1 349 *
bogdanm 89:552587b429a1 350 * @retval None
bogdanm 89:552587b429a1 351 */
bogdanm 92:4fc01daae5a5 352 #define __HAL_IRDA_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->SR = ~(__FLAG__))
bogdanm 92:4fc01daae5a5 353
bogdanm 92:4fc01daae5a5 354 /** @brief Clear the IRDA PE pending flag.
bogdanm 92:4fc01daae5a5 355 * @param __HANDLE__: specifies the USART Handle.
bogdanm 92:4fc01daae5a5 356 * This parameter can be USARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
bogdanm 92:4fc01daae5a5 357 * UART peripheral.
bogdanm 92:4fc01daae5a5 358 * @retval None
bogdanm 92:4fc01daae5a5 359 */
Kojto 99:dbbf35b96557 360 #define __HAL_IRDA_CLEAR_PEFLAG(__HANDLE__) \
Kojto 99:dbbf35b96557 361 do{ \
Kojto 122:f9eeca106725 362 __IO uint32_t tmpreg = 0x00U; \
Kojto 99:dbbf35b96557 363 tmpreg = (__HANDLE__)->Instance->SR; \
Kojto 99:dbbf35b96557 364 UNUSED(tmpreg); \
Kojto 99:dbbf35b96557 365 } while(0)
Kojto 99:dbbf35b96557 366
bogdanm 92:4fc01daae5a5 367 /** @brief Clear the IRDA FE pending flag.
bogdanm 92:4fc01daae5a5 368 * @param __HANDLE__: specifies the USART Handle.
bogdanm 92:4fc01daae5a5 369 * This parameter can be USARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
bogdanm 92:4fc01daae5a5 370 * UART peripheral.
bogdanm 92:4fc01daae5a5 371 * @retval None
bogdanm 92:4fc01daae5a5 372 */
bogdanm 92:4fc01daae5a5 373 #define __HAL_IRDA_CLEAR_FEFLAG(__HANDLE__) __HAL_IRDA_CLEAR_PEFLAG(__HANDLE__)
bogdanm 89:552587b429a1 374
bogdanm 92:4fc01daae5a5 375 /** @brief Clear the IRDA NE pending flag.
bogdanm 92:4fc01daae5a5 376 * @param __HANDLE__: specifies the USART Handle.
bogdanm 92:4fc01daae5a5 377 * This parameter can be USARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
bogdanm 92:4fc01daae5a5 378 * UART peripheral.
bogdanm 92:4fc01daae5a5 379 * @retval None
bogdanm 92:4fc01daae5a5 380 */
bogdanm 92:4fc01daae5a5 381 #define __HAL_IRDA_CLEAR_NEFLAG(__HANDLE__) __HAL_IRDA_CLEAR_PEFLAG(__HANDLE__)
bogdanm 92:4fc01daae5a5 382
bogdanm 92:4fc01daae5a5 383 /** @brief Clear the IRDA ORE pending flag.
bogdanm 92:4fc01daae5a5 384 * @param __HANDLE__: specifies the USART Handle.
bogdanm 92:4fc01daae5a5 385 * This parameter can be USARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
bogdanm 92:4fc01daae5a5 386 * UART peripheral.
bogdanm 92:4fc01daae5a5 387 * @retval None
bogdanm 92:4fc01daae5a5 388 */
bogdanm 92:4fc01daae5a5 389 #define __HAL_IRDA_CLEAR_OREFLAG(__HANDLE__) __HAL_IRDA_CLEAR_PEFLAG(__HANDLE__)
bogdanm 92:4fc01daae5a5 390
bogdanm 92:4fc01daae5a5 391 /** @brief Clear the IRDA IDLE pending flag.
bogdanm 92:4fc01daae5a5 392 * @param __HANDLE__: specifies the USART Handle.
bogdanm 92:4fc01daae5a5 393 * This parameter can be USARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
bogdanm 92:4fc01daae5a5 394 * UART peripheral.
bogdanm 92:4fc01daae5a5 395 * @retval None
bogdanm 92:4fc01daae5a5 396 */
bogdanm 92:4fc01daae5a5 397 #define __HAL_IRDA_CLEAR_IDLEFLAG(__HANDLE__) __HAL_IRDA_CLEAR_PEFLAG(__HANDLE__)
bogdanm 89:552587b429a1 398
bogdanm 89:552587b429a1 399 /** @brief Enables or disables the specified IRDA interrupt.
bogdanm 89:552587b429a1 400 * @param __HANDLE__: specifies the USART Handle.
bogdanm 89:552587b429a1 401 * This parameter can be USARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
bogdanm 89:552587b429a1 402 * UART peripheral.
bogdanm 89:552587b429a1 403 * @param __INTERRUPT__: specifies the IRDA interrupt source to check.
bogdanm 89:552587b429a1 404 * This parameter can be one of the following values:
bogdanm 89:552587b429a1 405 * @arg IRDA_IT_TXE: Transmit Data Register empty interrupt
bogdanm 89:552587b429a1 406 * @arg IRDA_IT_TC: Transmission complete interrupt
bogdanm 89:552587b429a1 407 * @arg IRDA_IT_RXNE: Receive Data register not empty interrupt
bogdanm 89:552587b429a1 408 * @arg IRDA_IT_IDLE: Idle line detection interrupt
bogdanm 89:552587b429a1 409 * @arg IRDA_IT_PE: Parity Error interrupt
bogdanm 89:552587b429a1 410 * @arg IRDA_IT_ERR: Error interrupt(Frame error, noise error, overrun error)
bogdanm 89:552587b429a1 411 * @retval None
bogdanm 89:552587b429a1 412 */
Kojto 122:f9eeca106725 413 #define __HAL_IRDA_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((((__INTERRUPT__) >> 28U) == 1U)? ((__HANDLE__)->Instance->CR1 |= ((__INTERRUPT__) & IRDA_IT_MASK)): \
Kojto 122:f9eeca106725 414 (((__INTERRUPT__) >> 28U) == 2U)? ((__HANDLE__)->Instance->CR2 |= ((__INTERRUPT__) & IRDA_IT_MASK)): \
bogdanm 89:552587b429a1 415 ((__HANDLE__)->Instance->CR3 |= ((__INTERRUPT__) & IRDA_IT_MASK)))
Kojto 122:f9eeca106725 416 #define __HAL_IRDA_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((((__INTERRUPT__) >> 28U) == 1U)? ((__HANDLE__)->Instance->CR1 &= ~((__INTERRUPT__) & IRDA_IT_MASK)): \
Kojto 122:f9eeca106725 417 (((__INTERRUPT__) >> 28U) == 2U)? ((__HANDLE__)->Instance->CR2 &= ~((__INTERRUPT__) & IRDA_IT_MASK)): \
Kojto 99:dbbf35b96557 418 ((__HANDLE__)->Instance->CR3 &= ~ ((__INTERRUPT__) & IRDA_IT_MASK)))
bogdanm 89:552587b429a1 419
bogdanm 89:552587b429a1 420 /** @brief Checks whether the specified IRDA interrupt has occurred or not.
bogdanm 89:552587b429a1 421 * @param __HANDLE__: specifies the USART Handle.
bogdanm 89:552587b429a1 422 * This parameter can be USARTx where x: 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or
bogdanm 89:552587b429a1 423 * UART peripheral.
bogdanm 89:552587b429a1 424 * @param __IT__: specifies the IRDA interrupt source to check.
bogdanm 89:552587b429a1 425 * This parameter can be one of the following values:
bogdanm 89:552587b429a1 426 * @arg IRDA_IT_TXE: Transmit Data Register empty interrupt
bogdanm 89:552587b429a1 427 * @arg IRDA_IT_TC: Transmission complete interrupt
bogdanm 89:552587b429a1 428 * @arg IRDA_IT_RXNE: Receive Data register not empty interrupt
bogdanm 89:552587b429a1 429 * @arg IRDA_IT_IDLE: Idle line detection interrupt
bogdanm 89:552587b429a1 430 * @arg USART_IT_ERR: Error interrupt
bogdanm 89:552587b429a1 431 * @arg IRDA_IT_PE: Parity Error interrupt
bogdanm 89:552587b429a1 432 * @retval The new state of __IT__ (TRUE or FALSE).
bogdanm 89:552587b429a1 433 */
Kojto 122:f9eeca106725 434 #define __HAL_IRDA_GET_IT_SOURCE(__HANDLE__, __IT__) (((((__IT__) >> 28U) == 1U)? (__HANDLE__)->Instance->CR1:(((((uint32_t)(__IT__)) >> 28U) == 2U)? \
bogdanm 89:552587b429a1 435 (__HANDLE__)->Instance->CR2 : (__HANDLE__)->Instance->CR3)) & (((uint32_t)(__IT__)) & IRDA_IT_MASK))
bogdanm 89:552587b429a1 436
Kojto 99:dbbf35b96557 437 /** @brief Macro to enable the IRDA's one bit sample method
Kojto 99:dbbf35b96557 438 * @param __HANDLE__: specifies the IRDA Handle.
Kojto 99:dbbf35b96557 439 * @retval None
Kojto 99:dbbf35b96557 440 */
Kojto 99:dbbf35b96557 441 #define __HAL_IRDA_ONE_BIT_SAMPLE_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3|= USART_CR3_ONEBIT)
bogdanm 89:552587b429a1 442
Kojto 99:dbbf35b96557 443 /** @brief Macro to disable the IRDA's one bit sample method
Kojto 99:dbbf35b96557 444 * @param __HANDLE__: specifies the IRDA Handle.
Kojto 99:dbbf35b96557 445 * @retval None
Kojto 99:dbbf35b96557 446 */
Kojto 99:dbbf35b96557 447 #define __HAL_IRDA_ONE_BIT_SAMPLE_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR3 &= (uint16_t)~((uint16_t)USART_CR3_ONEBIT))
bogdanm 89:552587b429a1 448
Kojto 99:dbbf35b96557 449 /** @brief Enable UART/USART associated to IRDA Handle
Kojto 99:dbbf35b96557 450 * @param __HANDLE__: specifies the IRDA Handle.
Kojto 99:dbbf35b96557 451 * IRDA Handle selects the USARTx or UARTy peripheral
Kojto 99:dbbf35b96557 452 * (USART,UART availability and x,y values depending on device).
Kojto 99:dbbf35b96557 453 * @retval None
Kojto 99:dbbf35b96557 454 */
Kojto 99:dbbf35b96557 455 #define __HAL_IRDA_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 |= USART_CR1_UE)
Kojto 99:dbbf35b96557 456
Kojto 99:dbbf35b96557 457 /** @brief Disable UART/USART associated to IRDA Handle
Kojto 99:dbbf35b96557 458 * @param __HANDLE__: specifies the IRDA Handle.
Kojto 99:dbbf35b96557 459 * IRDA Handle selects the USARTx or UARTy peripheral
Kojto 99:dbbf35b96557 460 * (USART,UART availability and x,y values depending on device).
Kojto 99:dbbf35b96557 461 * @retval None
Kojto 99:dbbf35b96557 462 */
Kojto 99:dbbf35b96557 463 #define __HAL_IRDA_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 &= ~USART_CR1_UE)
bogdanm 89:552587b429a1 464
Kojto 99:dbbf35b96557 465 /**
Kojto 99:dbbf35b96557 466 * @}
Kojto 99:dbbf35b96557 467 */
bogdanm 89:552587b429a1 468
bogdanm 89:552587b429a1 469 /* Exported functions --------------------------------------------------------*/
Kojto 99:dbbf35b96557 470 /** @addtogroup IRDA_Exported_Functions
Kojto 99:dbbf35b96557 471 * @{
Kojto 99:dbbf35b96557 472 */
Kojto 99:dbbf35b96557 473
Kojto 99:dbbf35b96557 474 /** @addtogroup IRDA_Exported_Functions_Group1
Kojto 99:dbbf35b96557 475 * @{
Kojto 99:dbbf35b96557 476 */
bogdanm 89:552587b429a1 477 /* Initialization/de-initialization functions **********************************/
bogdanm 89:552587b429a1 478 HAL_StatusTypeDef HAL_IRDA_Init(IRDA_HandleTypeDef *hirda);
bogdanm 89:552587b429a1 479 HAL_StatusTypeDef HAL_IRDA_DeInit(IRDA_HandleTypeDef *hirda);
bogdanm 89:552587b429a1 480 void HAL_IRDA_MspInit(IRDA_HandleTypeDef *hirda);
bogdanm 89:552587b429a1 481 void HAL_IRDA_MspDeInit(IRDA_HandleTypeDef *hirda);
Kojto 99:dbbf35b96557 482 /**
Kojto 99:dbbf35b96557 483 * @}
Kojto 99:dbbf35b96557 484 */
bogdanm 89:552587b429a1 485
Kojto 99:dbbf35b96557 486 /** @addtogroup IRDA_Exported_Functions_Group2
Kojto 99:dbbf35b96557 487 * @{
Kojto 99:dbbf35b96557 488 */
bogdanm 89:552587b429a1 489 /* IO operation functions *******************************************************/
bogdanm 89:552587b429a1 490 HAL_StatusTypeDef HAL_IRDA_Transmit(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size, uint32_t Timeout);
bogdanm 89:552587b429a1 491 HAL_StatusTypeDef HAL_IRDA_Receive(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size, uint32_t Timeout);
bogdanm 89:552587b429a1 492 HAL_StatusTypeDef HAL_IRDA_Transmit_IT(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size);
bogdanm 89:552587b429a1 493 HAL_StatusTypeDef HAL_IRDA_Receive_IT(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size);
bogdanm 89:552587b429a1 494 HAL_StatusTypeDef HAL_IRDA_Transmit_DMA(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size);
bogdanm 89:552587b429a1 495 HAL_StatusTypeDef HAL_IRDA_Receive_DMA(IRDA_HandleTypeDef *hirda, uint8_t *pData, uint16_t Size);
bogdanm 92:4fc01daae5a5 496 HAL_StatusTypeDef HAL_IRDA_DMAPause(IRDA_HandleTypeDef *hirda);
bogdanm 92:4fc01daae5a5 497 HAL_StatusTypeDef HAL_IRDA_DMAResume(IRDA_HandleTypeDef *hirda);
bogdanm 92:4fc01daae5a5 498 HAL_StatusTypeDef HAL_IRDA_DMAStop(IRDA_HandleTypeDef *hirda);
Kojto 122:f9eeca106725 499
bogdanm 89:552587b429a1 500 void HAL_IRDA_IRQHandler(IRDA_HandleTypeDef *hirda);
bogdanm 89:552587b429a1 501 void HAL_IRDA_TxCpltCallback(IRDA_HandleTypeDef *hirda);
bogdanm 89:552587b429a1 502 void HAL_IRDA_RxCpltCallback(IRDA_HandleTypeDef *hirda);
bogdanm 92:4fc01daae5a5 503 void HAL_IRDA_TxHalfCpltCallback(IRDA_HandleTypeDef *hirda);
bogdanm 92:4fc01daae5a5 504 void HAL_IRDA_RxHalfCpltCallback(IRDA_HandleTypeDef *hirda);
bogdanm 89:552587b429a1 505 void HAL_IRDA_ErrorCallback(IRDA_HandleTypeDef *hirda);
Kojto 99:dbbf35b96557 506 /**
Kojto 99:dbbf35b96557 507 * @}
Kojto 99:dbbf35b96557 508 */
bogdanm 89:552587b429a1 509
Kojto 99:dbbf35b96557 510 /** @addtogroup IRDA_Exported_Functions_Group3
Kojto 99:dbbf35b96557 511 * @{
Kojto 99:dbbf35b96557 512 */
bogdanm 89:552587b429a1 513 /* Peripheral State functions **************************************************/
bogdanm 89:552587b429a1 514 HAL_IRDA_StateTypeDef HAL_IRDA_GetState(IRDA_HandleTypeDef *hirda);
Kojto 99:dbbf35b96557 515 uint32_t HAL_IRDA_GetError(IRDA_HandleTypeDef *hirda);
Kojto 99:dbbf35b96557 516 /**
Kojto 99:dbbf35b96557 517 * @}
Kojto 99:dbbf35b96557 518 */
Kojto 99:dbbf35b96557 519
Kojto 99:dbbf35b96557 520 /**
Kojto 99:dbbf35b96557 521 * @}
Kojto 99:dbbf35b96557 522 */
Kojto 99:dbbf35b96557 523
Kojto 99:dbbf35b96557 524 /* Private types -------------------------------------------------------------*/
Kojto 99:dbbf35b96557 525 /* Private variables ---------------------------------------------------------*/
Kojto 99:dbbf35b96557 526 /* Private constants ---------------------------------------------------------*/
Kojto 99:dbbf35b96557 527 /** @defgroup IRDA_Private_Constants IRDA Private Constants
Kojto 99:dbbf35b96557 528 * @{
Kojto 99:dbbf35b96557 529 */
Kojto 99:dbbf35b96557 530
Kojto 99:dbbf35b96557 531 /** @brief IRDA interruptions flag mask
Kojto 99:dbbf35b96557 532 *
Kojto 99:dbbf35b96557 533 */
Kojto 99:dbbf35b96557 534 #define IRDA_IT_MASK ((uint32_t) USART_CR1_PEIE | USART_CR1_TXEIE | USART_CR1_TCIE | USART_CR1_RXNEIE | \
Kojto 99:dbbf35b96557 535 USART_CR1_IDLEIE | USART_CR2_LBDIE | USART_CR3_CTSIE | USART_CR3_EIE )
Kojto 99:dbbf35b96557 536
Kojto 122:f9eeca106725 537 #define IRDA_CR1_REG_INDEX 1U
Kojto 122:f9eeca106725 538 #define IRDA_CR2_REG_INDEX 2U
Kojto 122:f9eeca106725 539 #define IRDA_CR3_REG_INDEX 3U
Kojto 99:dbbf35b96557 540 /**
Kojto 99:dbbf35b96557 541 * @}
Kojto 99:dbbf35b96557 542 */
Kojto 99:dbbf35b96557 543
Kojto 99:dbbf35b96557 544 /* Private macros --------------------------------------------------------*/
Kojto 99:dbbf35b96557 545 /** @defgroup IRDA_Private_Macros IRDA Private Macros
Kojto 99:dbbf35b96557 546 * @{
Kojto 99:dbbf35b96557 547 */
Kojto 99:dbbf35b96557 548 #define IS_IRDA_WORD_LENGTH(LENGTH) (((LENGTH) == IRDA_WORDLENGTH_8B) || \
Kojto 99:dbbf35b96557 549 ((LENGTH) == IRDA_WORDLENGTH_9B))
Kojto 99:dbbf35b96557 550 #define IS_IRDA_PARITY(PARITY) (((PARITY) == IRDA_PARITY_NONE) || \
Kojto 99:dbbf35b96557 551 ((PARITY) == IRDA_PARITY_EVEN) || \
Kojto 99:dbbf35b96557 552 ((PARITY) == IRDA_PARITY_ODD))
Kojto 122:f9eeca106725 553 #define IS_IRDA_MODE(MODE) ((((MODE) & (uint32_t)0x0000FFF3U) == 0x00U) && ((MODE) != (uint32_t)0x00000000U))
Kojto 99:dbbf35b96557 554 #define IS_IRDA_POWERMODE(MODE) (((MODE) == IRDA_POWERMODE_LOWPOWER) || \
Kojto 99:dbbf35b96557 555 ((MODE) == IRDA_POWERMODE_NORMAL))
Kojto 122:f9eeca106725 556 #define IS_IRDA_BAUDRATE(BAUDRATE) ((BAUDRATE) < 115201U)
Kojto 99:dbbf35b96557 557
Kojto 122:f9eeca106725 558 #define IRDA_DIV(_PCLK_, _BAUD_) (((_PCLK_)*25U)/(4U*(_BAUD_)))
Kojto 122:f9eeca106725 559 #define IRDA_DIVMANT(_PCLK_, _BAUD_) (IRDA_DIV((_PCLK_), (_BAUD_))/100U)
Kojto 122:f9eeca106725 560 #define IRDA_DIVFRAQ(_PCLK_, _BAUD_) (((IRDA_DIV((_PCLK_), (_BAUD_)) - (IRDA_DIVMANT((_PCLK_), (_BAUD_)) * 100U)) * 16U + 50U) / 100U)
Kojto 122:f9eeca106725 561 /* UART BRR = mantissa + overflow + fraction
Kojto 122:f9eeca106725 562 = (UART DIVMANT << 4) + (UART DIVFRAQ & 0xF0) + (UART DIVFRAQ & 0x0FU) */
Kojto 122:f9eeca106725 563 #define IRDA_BRR(_PCLK_, _BAUD_) (((IRDA_DIVMANT((_PCLK_), (_BAUD_)) << 4U) + \
Kojto 122:f9eeca106725 564 (IRDA_DIVFRAQ((_PCLK_), (_BAUD_)) & 0xF0U)) + \
Kojto 122:f9eeca106725 565 (IRDA_DIVFRAQ((_PCLK_), (_BAUD_)) & 0x0FU))
Kojto 99:dbbf35b96557 566
Kojto 99:dbbf35b96557 567 /**
Kojto 99:dbbf35b96557 568 * @}
Kojto 99:dbbf35b96557 569 */
Kojto 99:dbbf35b96557 570
Kojto 99:dbbf35b96557 571 /* Private functions ---------------------------------------------------------*/
Kojto 99:dbbf35b96557 572 /** @defgroup IRDA_Private_Functions IRDA Private Functions
Kojto 99:dbbf35b96557 573 * @{
Kojto 99:dbbf35b96557 574 */
Kojto 99:dbbf35b96557 575
Kojto 99:dbbf35b96557 576 /**
Kojto 99:dbbf35b96557 577 * @}
Kojto 99:dbbf35b96557 578 */
bogdanm 89:552587b429a1 579
bogdanm 89:552587b429a1 580 /**
bogdanm 89:552587b429a1 581 * @}
bogdanm 89:552587b429a1 582 */
bogdanm 89:552587b429a1 583
bogdanm 89:552587b429a1 584 /**
bogdanm 89:552587b429a1 585 * @}
bogdanm 89:552587b429a1 586 */
bogdanm 89:552587b429a1 587
bogdanm 89:552587b429a1 588 #ifdef __cplusplus
bogdanm 89:552587b429a1 589 }
bogdanm 89:552587b429a1 590 #endif
bogdanm 89:552587b429a1 591
bogdanm 89:552587b429a1 592 #endif /* __STM32F4xx_HAL_IRDA_H */
bogdanm 89:552587b429a1 593
bogdanm 89:552587b429a1 594 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/