mbed official / mbed

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

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
Kojto 110:165afa46840b 1 /**
Kojto 110:165afa46840b 2 ******************************************************************************
Kojto 110:165afa46840b 3 * @file stm32f4xx_hal_spdifrx.h
Kojto 110:165afa46840b 4 * @author MCD Application Team
Kojto 122:f9eeca106725 5 * @version V1.5.0
Kojto 122:f9eeca106725 6 * @date 06-May-2016
Kojto 110:165afa46840b 7 * @brief Header file of SPDIFRX HAL module.
Kojto 110:165afa46840b 8 ******************************************************************************
Kojto 110:165afa46840b 9 * @attention
Kojto 110:165afa46840b 10 *
Kojto 122:f9eeca106725 11 * <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
Kojto 110:165afa46840b 12 *
Kojto 110:165afa46840b 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 110:165afa46840b 14 * are permitted provided that the following conditions are met:
Kojto 110:165afa46840b 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 110:165afa46840b 16 * this list of conditions and the following disclaimer.
Kojto 110:165afa46840b 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 110:165afa46840b 18 * this list of conditions and the following disclaimer in the documentation
Kojto 110:165afa46840b 19 * and/or other materials provided with the distribution.
Kojto 110:165afa46840b 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 110:165afa46840b 21 * may be used to endorse or promote products derived from this software
Kojto 110:165afa46840b 22 * without specific prior written permission.
Kojto 110:165afa46840b 23 *
Kojto 110:165afa46840b 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 110:165afa46840b 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 110:165afa46840b 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 110:165afa46840b 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 110:165afa46840b 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 110:165afa46840b 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 110:165afa46840b 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 110:165afa46840b 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 110:165afa46840b 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 110:165afa46840b 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 110:165afa46840b 34 *
Kojto 110:165afa46840b 35 ******************************************************************************
Kojto 110:165afa46840b 36 */
Kojto 110:165afa46840b 37
Kojto 110:165afa46840b 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 110:165afa46840b 39 #ifndef __STM32F4xx_HAL_SPDIFRX_H
Kojto 110:165afa46840b 40 #define __STM32F4xx_HAL_SPDIFRX_H
Kojto 110:165afa46840b 41
Kojto 110:165afa46840b 42 #ifdef __cplusplus
Kojto 110:165afa46840b 43 extern "C" {
Kojto 110:165afa46840b 44 #endif
Kojto 110:165afa46840b 45
Kojto 110:165afa46840b 46 #if defined(STM32F446xx)
Kojto 110:165afa46840b 47
Kojto 110:165afa46840b 48 /* Includes ------------------------------------------------------------------*/
Kojto 110:165afa46840b 49 #include "stm32f4xx_hal_def.h"
Kojto 110:165afa46840b 50
Kojto 110:165afa46840b 51 /** @addtogroup STM32F4xx_HAL_Driver
Kojto 110:165afa46840b 52 * @{
Kojto 110:165afa46840b 53 */
Kojto 110:165afa46840b 54
Kojto 110:165afa46840b 55 /** @addtogroup SPDIFRX
Kojto 110:165afa46840b 56 * @{
Kojto 110:165afa46840b 57 */
Kojto 110:165afa46840b 58
Kojto 110:165afa46840b 59 /* Exported types ------------------------------------------------------------*/
Kojto 110:165afa46840b 60 /** @defgroup SPDIFRX_Exported_Types SPDIFRX Exported Types
Kojto 110:165afa46840b 61 * @{
Kojto 110:165afa46840b 62 */
Kojto 110:165afa46840b 63
Kojto 110:165afa46840b 64 /**
Kojto 110:165afa46840b 65 * @brief SPDIFRX Init structure definition
Kojto 110:165afa46840b 66 */
Kojto 110:165afa46840b 67 typedef struct
Kojto 110:165afa46840b 68 {
Kojto 110:165afa46840b 69 uint32_t InputSelection; /*!< Specifies the SPDIF input selection.
Kojto 110:165afa46840b 70 This parameter can be a value of @ref SPDIFRX_Input_Selection */
Kojto 110:165afa46840b 71
Kojto 110:165afa46840b 72 uint32_t Retries; /*!< Specifies the Maximum allowed re-tries during synchronization phase.
Kojto 110:165afa46840b 73 This parameter can be a value of @ref SPDIFRX_Max_Retries */
Kojto 110:165afa46840b 74
Kojto 110:165afa46840b 75 uint32_t WaitForActivity; /*!< Specifies the wait for activity on SPDIF selected input.
Kojto 110:165afa46840b 76 This parameter can be a value of @ref SPDIFRX_Wait_For_Activity. */
Kojto 110:165afa46840b 77
Kojto 110:165afa46840b 78 uint32_t ChannelSelection; /*!< Specifies whether the control flow will take the channel status from channel A or B.
Kojto 110:165afa46840b 79 This parameter can be a value of @ref SPDIFRX_Channel_Selection */
Kojto 110:165afa46840b 80
Kojto 110:165afa46840b 81 uint32_t DataFormat; /*!< Specifies the Data samples format (LSB, MSB, ...).
Kojto 110:165afa46840b 82 This parameter can be a value of @ref SPDIFRX_Data_Format */
Kojto 122:f9eeca106725 83
Kojto 110:165afa46840b 84 uint32_t StereoMode; /*!< Specifies whether the peripheral is in stereo or mono mode.
Kojto 110:165afa46840b 85 This parameter can be a value of @ref SPDIFRX_Stereo_Mode */
Kojto 110:165afa46840b 86
Kojto 110:165afa46840b 87 uint32_t PreambleTypeMask; /*!< Specifies whether The preamble type bits are copied or not into the received frame.
Kojto 110:165afa46840b 88 This parameter can be a value of @ref SPDIFRX_PT_Mask */
Kojto 110:165afa46840b 89
Kojto 110:165afa46840b 90 uint32_t ChannelStatusMask; /*!< Specifies whether the channel status and user bits are copied or not into the received frame.
Kojto 110:165afa46840b 91 This parameter can be a value of @ref SPDIFRX_ChannelStatus_Mask */
Kojto 122:f9eeca106725 92
Kojto 110:165afa46840b 93 uint32_t ValidityBitMask; /*!< Specifies whether the validity bit is copied or not into the received frame.
Kojto 110:165afa46840b 94 This parameter can be a value of @ref SPDIFRX_V_Mask */
Kojto 122:f9eeca106725 95
Kojto 110:165afa46840b 96 uint32_t ParityErrorMask; /*!< Specifies whether the parity error bit is copied or not into the received frame.
Kojto 110:165afa46840b 97 This parameter can be a value of @ref SPDIFRX_PE_Mask */
Kojto 110:165afa46840b 98 }SPDIFRX_InitTypeDef;
Kojto 110:165afa46840b 99
Kojto 110:165afa46840b 100 /**
Kojto 110:165afa46840b 101 * @brief SPDIFRX SetDataFormat structure definition
Kojto 110:165afa46840b 102 */
Kojto 110:165afa46840b 103 typedef struct
Kojto 110:165afa46840b 104 {
Kojto 110:165afa46840b 105 uint32_t DataFormat; /*!< Specifies the Data samples format (LSB, MSB, ...).
Kojto 110:165afa46840b 106 This parameter can be a value of @ref SPDIFRX_Data_Format */
Kojto 122:f9eeca106725 107
Kojto 110:165afa46840b 108 uint32_t StereoMode; /*!< Specifies whether the peripheral is in stereo or mono mode.
Kojto 110:165afa46840b 109 This parameter can be a value of @ref SPDIFRX_Stereo_Mode */
Kojto 110:165afa46840b 110
Kojto 110:165afa46840b 111 uint32_t PreambleTypeMask; /*!< Specifies whether The preamble type bits are copied or not into the received frame.
Kojto 110:165afa46840b 112 This parameter can be a value of @ref SPDIFRX_PT_Mask */
Kojto 110:165afa46840b 113
Kojto 110:165afa46840b 114 uint32_t ChannelStatusMask; /*!< Specifies whether the channel status and user bits are copied or not into the received frame.
Kojto 110:165afa46840b 115 This parameter can be a value of @ref SPDIFRX_ChannelStatus_Mask */
Kojto 122:f9eeca106725 116
Kojto 110:165afa46840b 117 uint32_t ValidityBitMask; /*!< Specifies whether the validity bit is copied or not into the received frame.
Kojto 110:165afa46840b 118 This parameter can be a value of @ref SPDIFRX_V_Mask */
Kojto 122:f9eeca106725 119
Kojto 110:165afa46840b 120 uint32_t ParityErrorMask; /*!< Specifies whether the parity error bit is copied or not into the received frame.
Kojto 110:165afa46840b 121 This parameter can be a value of @ref SPDIFRX_PE_Mask */
Kojto 110:165afa46840b 122 }SPDIFRX_SetDataFormatTypeDef;
Kojto 110:165afa46840b 123
Kojto 110:165afa46840b 124 /**
Kojto 110:165afa46840b 125 * @brief HAL State structures definition
Kojto 110:165afa46840b 126 */
Kojto 110:165afa46840b 127 typedef enum
Kojto 110:165afa46840b 128 {
Kojto 122:f9eeca106725 129 HAL_SPDIFRX_STATE_RESET = 0x00U, /*!< SPDIFRX not yet initialized or disabled */
Kojto 122:f9eeca106725 130 HAL_SPDIFRX_STATE_READY = 0x01U, /*!< SPDIFRX initialized and ready for use */
Kojto 122:f9eeca106725 131 HAL_SPDIFRX_STATE_BUSY = 0x02U, /*!< SPDIFRX internal process is ongoing */
Kojto 122:f9eeca106725 132 HAL_SPDIFRX_STATE_BUSY_RX = 0x03U, /*!< SPDIFRX internal Data Flow RX process is ongoing */
Kojto 122:f9eeca106725 133 HAL_SPDIFRX_STATE_BUSY_CX = 0x04U, /*!< SPDIFRX internal Control Flow RX process is ongoing */
Kojto 122:f9eeca106725 134 HAL_SPDIFRX_STATE_ERROR = 0x07U /*!< SPDIFRX error state */
Kojto 110:165afa46840b 135 }HAL_SPDIFRX_StateTypeDef;
Kojto 110:165afa46840b 136
Kojto 110:165afa46840b 137 /**
Kojto 110:165afa46840b 138 * @brief SPDIFRX handle Structure definition
Kojto 110:165afa46840b 139 */
Kojto 110:165afa46840b 140 typedef struct
Kojto 110:165afa46840b 141 {
Kojto 110:165afa46840b 142 SPDIFRX_TypeDef *Instance; /* SPDIFRX registers base address */
Kojto 110:165afa46840b 143
Kojto 110:165afa46840b 144 SPDIFRX_InitTypeDef Init; /* SPDIFRX communication parameters */
Kojto 122:f9eeca106725 145
Kojto 110:165afa46840b 146 uint32_t *pRxBuffPtr; /* Pointer to SPDIFRX Rx transfer buffer */
Kojto 122:f9eeca106725 147
Kojto 110:165afa46840b 148 uint32_t *pCsBuffPtr; /* Pointer to SPDIFRX Cx transfer buffer */
Kojto 122:f9eeca106725 149
Kojto 110:165afa46840b 150 __IO uint16_t RxXferSize; /* SPDIFRX Rx transfer size */
Kojto 122:f9eeca106725 151
Kojto 110:165afa46840b 152 __IO uint16_t RxXferCount; /* SPDIFRX Rx transfer counter
Kojto 110:165afa46840b 153 (This field is initialized at the
Kojto 110:165afa46840b 154 same value as transfer size at the
Kojto 110:165afa46840b 155 beginning of the transfer and
Kojto 110:165afa46840b 156 decremented when a sample is received.
Kojto 110:165afa46840b 157 NbSamplesReceived = RxBufferSize-RxBufferCount) */
Kojto 122:f9eeca106725 158
Kojto 110:165afa46840b 159 __IO uint16_t CsXferSize; /* SPDIFRX Rx transfer size */
Kojto 122:f9eeca106725 160
Kojto 110:165afa46840b 161 __IO uint16_t CsXferCount; /* SPDIFRX Rx transfer counter
Kojto 110:165afa46840b 162 (This field is initialized at the
Kojto 110:165afa46840b 163 same value as transfer size at the
Kojto 110:165afa46840b 164 beginning of the transfer and
Kojto 110:165afa46840b 165 decremented when a sample is received.
Kojto 110:165afa46840b 166 NbSamplesReceived = RxBufferSize-RxBufferCount) */
Kojto 110:165afa46840b 167
Kojto 110:165afa46840b 168 DMA_HandleTypeDef *hdmaCsRx; /* SPDIFRX EC60958_channel_status and user_information DMA handle parameters */
Kojto 110:165afa46840b 169
Kojto 110:165afa46840b 170 DMA_HandleTypeDef *hdmaDrRx; /* SPDIFRX Rx DMA handle parameters */
Kojto 122:f9eeca106725 171
Kojto 110:165afa46840b 172 __IO HAL_LockTypeDef Lock; /* SPDIFRX locking object */
Kojto 122:f9eeca106725 173
Kojto 110:165afa46840b 174 __IO HAL_SPDIFRX_StateTypeDef State; /* SPDIFRX communication state */
Kojto 110:165afa46840b 175
Kojto 110:165afa46840b 176 __IO uint32_t ErrorCode; /* SPDIFRX Error code */
Kojto 110:165afa46840b 177 }SPDIFRX_HandleTypeDef;
Kojto 110:165afa46840b 178 /**
Kojto 110:165afa46840b 179 * @}
Kojto 110:165afa46840b 180 */
Kojto 110:165afa46840b 181
Kojto 110:165afa46840b 182 /* Exported constants --------------------------------------------------------*/
Kojto 110:165afa46840b 183 /** @defgroup SPDIFRX_Exported_Constants SPDIFRX Exported Constants
Kojto 110:165afa46840b 184 * @{
Kojto 110:165afa46840b 185 */
Kojto 110:165afa46840b 186 /** @defgroup SPDIFRX_ErrorCode SPDIFRX Error Code
Kojto 110:165afa46840b 187 * @{
Kojto 110:165afa46840b 188 */
Kojto 122:f9eeca106725 189 #define HAL_SPDIFRX_ERROR_NONE ((uint32_t)0x00000000U) /*!< No error */
Kojto 122:f9eeca106725 190 #define HAL_SPDIFRX_ERROR_TIMEOUT ((uint32_t)0x00000001U) /*!< Timeout error */
Kojto 122:f9eeca106725 191 #define HAL_SPDIFRX_ERROR_OVR ((uint32_t)0x00000002U) /*!< OVR error */
Kojto 122:f9eeca106725 192 #define HAL_SPDIFRX_ERROR_PE ((uint32_t)0x00000004U) /*!< Parity error */
Kojto 122:f9eeca106725 193 #define HAL_SPDIFRX_ERROR_DMA ((uint32_t)0x00000008U) /*!< DMA transfer error */
Kojto 122:f9eeca106725 194 #define HAL_SPDIFRX_ERROR_UNKNOWN ((uint32_t)0x00000010U) /*!< Unknown Error error */
Kojto 110:165afa46840b 195 /**
Kojto 110:165afa46840b 196 * @}
Kojto 110:165afa46840b 197 */
Kojto 110:165afa46840b 198
Kojto 110:165afa46840b 199 /** @defgroup SPDIFRX_Input_Selection SPDIFRX Input Selection
Kojto 110:165afa46840b 200 * @{
Kojto 110:165afa46840b 201 */
Kojto 122:f9eeca106725 202 #define SPDIFRX_INPUT_IN0 ((uint32_t)0x00000000U)
Kojto 122:f9eeca106725 203 #define SPDIFRX_INPUT_IN1 ((uint32_t)0x00010000U)
Kojto 122:f9eeca106725 204 #define SPDIFRX_INPUT_IN2 ((uint32_t)0x00020000U)
Kojto 122:f9eeca106725 205 #define SPDIFRX_INPUT_IN3 ((uint32_t)0x00030000U)
Kojto 110:165afa46840b 206 /**
Kojto 110:165afa46840b 207 * @}
Kojto 110:165afa46840b 208 */
Kojto 110:165afa46840b 209
Kojto 110:165afa46840b 210 /** @defgroup SPDIFRX_Max_Retries SPDIFRX Maximum Retries
Kojto 110:165afa46840b 211 * @{
Kojto 110:165afa46840b 212 */
Kojto 122:f9eeca106725 213 #define SPDIFRX_MAXRETRIES_NONE ((uint32_t)0x00000000U)
Kojto 122:f9eeca106725 214 #define SPDIFRX_MAXRETRIES_3 ((uint32_t)0x00001000U)
Kojto 122:f9eeca106725 215 #define SPDIFRX_MAXRETRIES_15 ((uint32_t)0x00002000U)
Kojto 122:f9eeca106725 216 #define SPDIFRX_MAXRETRIES_63 ((uint32_t)0x00003000U)
Kojto 110:165afa46840b 217 /**
Kojto 110:165afa46840b 218 * @}
Kojto 110:165afa46840b 219 */
Kojto 110:165afa46840b 220
Kojto 110:165afa46840b 221 /** @defgroup SPDIFRX_Wait_For_Activity SPDIFRX Wait For Activity
Kojto 110:165afa46840b 222 * @{
Kojto 110:165afa46840b 223 */
Kojto 122:f9eeca106725 224 #define SPDIFRX_WAITFORACTIVITY_OFF ((uint32_t)0x00000000U)
Kojto 110:165afa46840b 225 #define SPDIFRX_WAITFORACTIVITY_ON ((uint32_t)SPDIFRX_CR_WFA)
Kojto 110:165afa46840b 226 /**
Kojto 110:165afa46840b 227 * @}
Kojto 110:165afa46840b 228 */
Kojto 110:165afa46840b 229
Kojto 110:165afa46840b 230 /** @defgroup SPDIFRX_PT_Mask SPDIFRX Preamble Type Mask
Kojto 110:165afa46840b 231 * @{
Kojto 110:165afa46840b 232 */
Kojto 122:f9eeca106725 233 #define SPDIFRX_PREAMBLETYPEMASK_OFF ((uint32_t)0x00000000U)
Kojto 122:f9eeca106725 234 #define SPDIFRX_PREAMBLETYPEMASK_ON ((uint32_t)SPDIFRX_CR_PTMSK)
Kojto 110:165afa46840b 235 /**
Kojto 110:165afa46840b 236 * @}
Kojto 110:165afa46840b 237 */
Kojto 110:165afa46840b 238
Kojto 110:165afa46840b 239 /** @defgroup SPDIFRX_ChannelStatus_Mask SPDIFRX Channel Status Mask
Kojto 110:165afa46840b 240 * @{
Kojto 110:165afa46840b 241 */
Kojto 122:f9eeca106725 242 #define SPDIFRX_CHANNELSTATUS_OFF ((uint32_t)0x00000000U) /* The channel status and user bits are copied into the SPDIF_DR */
Kojto 110:165afa46840b 243 #define SPDIFRX_CHANNELSTATUS_ON ((uint32_t)SPDIFRX_CR_CUMSK) /* The channel status and user bits are not copied into the SPDIF_DR, zeros are written instead*/
Kojto 110:165afa46840b 244 /**
Kojto 110:165afa46840b 245 * @}
Kojto 110:165afa46840b 246 */
Kojto 110:165afa46840b 247
Kojto 110:165afa46840b 248 /** @defgroup SPDIFRX_V_Mask SPDIFRX Validity Mask
Kojto 110:165afa46840b 249 * @{
Kojto 110:165afa46840b 250 */
Kojto 122:f9eeca106725 251 #define SPDIFRX_VALIDITYMASK_OFF ((uint32_t)0x00000000U)
Kojto 110:165afa46840b 252 #define SPDIFRX_VALIDITYMASK_ON ((uint32_t)SPDIFRX_CR_VMSK)
Kojto 110:165afa46840b 253 /**
Kojto 110:165afa46840b 254 * @}
Kojto 110:165afa46840b 255 */
Kojto 110:165afa46840b 256
Kojto 110:165afa46840b 257 /** @defgroup SPDIFRX_PE_Mask SPDIFRX Parity Error Mask
Kojto 110:165afa46840b 258 * @{
Kojto 110:165afa46840b 259 */
Kojto 122:f9eeca106725 260 #define SPDIFRX_PARITYERRORMASK_OFF ((uint32_t)0x00000000U)
Kojto 110:165afa46840b 261 #define SPDIFRX_PARITYERRORMASK_ON ((uint32_t)SPDIFRX_CR_PMSK)
Kojto 110:165afa46840b 262 /**
Kojto 110:165afa46840b 263 * @}
Kojto 110:165afa46840b 264 */
Kojto 110:165afa46840b 265
Kojto 110:165afa46840b 266 /** @defgroup SPDIFRX_Channel_Selection SPDIFRX Channel Selection
Kojto 110:165afa46840b 267 * @{
Kojto 110:165afa46840b 268 */
Kojto 122:f9eeca106725 269 #define SPDIFRX_CHANNEL_A ((uint32_t)0x00000000U)
Kojto 110:165afa46840b 270 #define SPDIFRX_CHANNEL_B ((uint32_t)SPDIFRX_CR_CHSEL)
Kojto 110:165afa46840b 271 /**
Kojto 110:165afa46840b 272 * @}
Kojto 110:165afa46840b 273 */
Kojto 110:165afa46840b 274
Kojto 110:165afa46840b 275 /** @defgroup SPDIFRX_Data_Format SPDIFRX Data Format
Kojto 110:165afa46840b 276 * @{
Kojto 110:165afa46840b 277 */
Kojto 122:f9eeca106725 278 #define SPDIFRX_DATAFORMAT_LSB ((uint32_t)0x00000000U)
Kojto 122:f9eeca106725 279 #define SPDIFRX_DATAFORMAT_MSB ((uint32_t)0x00000010U)
Kojto 122:f9eeca106725 280 #define SPDIFRX_DATAFORMAT_32BITS ((uint32_t)0x00000020U)
Kojto 110:165afa46840b 281 /**
Kojto 110:165afa46840b 282 * @}
Kojto 110:165afa46840b 283 */
Kojto 110:165afa46840b 284
Kojto 110:165afa46840b 285 /** @defgroup SPDIFRX_Stereo_Mode SPDIFRX Stereo Mode
Kojto 110:165afa46840b 286 * @{
Kojto 110:165afa46840b 287 */
Kojto 122:f9eeca106725 288 #define SPDIFRX_STEREOMODE_DISABLE ((uint32_t)0x00000000U)
Kojto 110:165afa46840b 289 #define SPDIFRX_STEREOMODE_ENABLE ((uint32_t)SPDIFRX_CR_RXSTEO)
Kojto 110:165afa46840b 290 /**
Kojto 110:165afa46840b 291 * @}
Kojto 110:165afa46840b 292 */
Kojto 110:165afa46840b 293
Kojto 110:165afa46840b 294 /** @defgroup SPDIFRX_State SPDIFRX State
Kojto 110:165afa46840b 295 * @{
Kojto 110:165afa46840b 296 */
Kojto 110:165afa46840b 297
Kojto 122:f9eeca106725 298 #define SPDIFRX_STATE_IDLE ((uint32_t)0xFFFFFFFCU)
Kojto 122:f9eeca106725 299 #define SPDIFRX_STATE_SYNC ((uint32_t)0x00000001U)
Kojto 110:165afa46840b 300 #define SPDIFRX_STATE_RCV ((uint32_t)SPDIFRX_CR_SPDIFEN)
Kojto 110:165afa46840b 301 /**
Kojto 110:165afa46840b 302 * @}
Kojto 110:165afa46840b 303 */
Kojto 110:165afa46840b 304
Kojto 110:165afa46840b 305 /** @defgroup SPDIFRX_Interrupts_Definition SPDIFRX Interrupts Definition
Kojto 110:165afa46840b 306 * @{
Kojto 110:165afa46840b 307 */
Kojto 110:165afa46840b 308 #define SPDIFRX_IT_RXNE ((uint32_t)SPDIFRX_IMR_RXNEIE)
Kojto 110:165afa46840b 309 #define SPDIFRX_IT_CSRNE ((uint32_t)SPDIFRX_IMR_CSRNEIE)
Kojto 110:165afa46840b 310 #define SPDIFRX_IT_PERRIE ((uint32_t)SPDIFRX_IMR_PERRIE)
Kojto 110:165afa46840b 311 #define SPDIFRX_IT_OVRIE ((uint32_t)SPDIFRX_IMR_OVRIE)
Kojto 110:165afa46840b 312 #define SPDIFRX_IT_SBLKIE ((uint32_t)SPDIFRX_IMR_SBLKIE)
Kojto 110:165afa46840b 313 #define SPDIFRX_IT_SYNCDIE ((uint32_t)SPDIFRX_IMR_SYNCDIE)
Kojto 110:165afa46840b 314 #define SPDIFRX_IT_IFEIE ((uint32_t)SPDIFRX_IMR_IFEIE )
Kojto 110:165afa46840b 315 /**
Kojto 110:165afa46840b 316 * @}
Kojto 110:165afa46840b 317 */
Kojto 110:165afa46840b 318
Kojto 110:165afa46840b 319 /** @defgroup SPDIFRX_Flags_Definition SPDIFRX Flags Definition
Kojto 110:165afa46840b 320 * @{
Kojto 110:165afa46840b 321 */
Kojto 110:165afa46840b 322 #define SPDIFRX_FLAG_RXNE ((uint32_t)SPDIFRX_SR_RXNE)
Kojto 110:165afa46840b 323 #define SPDIFRX_FLAG_CSRNE ((uint32_t)SPDIFRX_SR_CSRNE)
Kojto 110:165afa46840b 324 #define SPDIFRX_FLAG_PERR ((uint32_t)SPDIFRX_SR_PERR)
Kojto 110:165afa46840b 325 #define SPDIFRX_FLAG_OVR ((uint32_t)SPDIFRX_SR_OVR)
Kojto 110:165afa46840b 326 #define SPDIFRX_FLAG_SBD ((uint32_t)SPDIFRX_SR_SBD)
Kojto 110:165afa46840b 327 #define SPDIFRX_FLAG_SYNCD ((uint32_t)SPDIFRX_SR_SYNCD)
Kojto 110:165afa46840b 328 #define SPDIFRX_FLAG_FERR ((uint32_t)SPDIFRX_SR_FERR)
Kojto 110:165afa46840b 329 #define SPDIFRX_FLAG_SERR ((uint32_t)SPDIFRX_SR_SERR)
Kojto 110:165afa46840b 330 #define SPDIFRX_FLAG_TERR ((uint32_t)SPDIFRX_SR_TERR)
Kojto 110:165afa46840b 331 /**
Kojto 110:165afa46840b 332 * @}
Kojto 110:165afa46840b 333 */
Kojto 110:165afa46840b 334
Kojto 110:165afa46840b 335 /**
Kojto 110:165afa46840b 336 * @}
Kojto 110:165afa46840b 337 */
Kojto 110:165afa46840b 338
Kojto 110:165afa46840b 339 /* Exported macros -----------------------------------------------------------*/
Kojto 110:165afa46840b 340 /** @defgroup SPDIFRX_Exported_macros SPDIFRX Exported Macros
Kojto 110:165afa46840b 341 * @{
Kojto 110:165afa46840b 342 */
Kojto 110:165afa46840b 343
Kojto 110:165afa46840b 344 /** @brief Reset SPDIFRX handle state
Kojto 110:165afa46840b 345 * @param __HANDLE__: SPDIFRX handle.
Kojto 110:165afa46840b 346 * @retval None
Kojto 110:165afa46840b 347 */
Kojto 110:165afa46840b 348 #define __HAL_SPDIFRX_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = (uint16_t)SPDIFRX_CR_SPDIFEN)
Kojto 110:165afa46840b 349
Kojto 110:165afa46840b 350 /** @brief Disable the specified SPDIFRX peripheral (IDLE State).
Kojto 110:165afa46840b 351 * @param __HANDLE__: specifies the SPDIFRX Handle.
Kojto 110:165afa46840b 352 * @retval None
Kojto 110:165afa46840b 353 */
Kojto 110:165afa46840b 354 #define __HAL_SPDIFRX_IDLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= SPDIFRX_STATE_IDLE)
Kojto 110:165afa46840b 355
Kojto 110:165afa46840b 356 /** @brief Enable the specified SPDIFRX peripheral (SYNC State).
Kojto 110:165afa46840b 357 * @param __HANDLE__: specifies the SPDIFRX Handle.
Kojto 110:165afa46840b 358 * @retval None
Kojto 110:165afa46840b 359 */
Kojto 110:165afa46840b 360 #define __HAL_SPDIFRX_SYNC(__HANDLE__) ((__HANDLE__)->Instance->CR |= SPDIFRX_STATE_SYNC)
Kojto 110:165afa46840b 361
Kojto 110:165afa46840b 362
Kojto 110:165afa46840b 363 /** @brief Enable the specified SPDIFRX peripheral (RCV State).
Kojto 110:165afa46840b 364 * @param __HANDLE__: specifies the SPDIFRX Handle.
Kojto 110:165afa46840b 365 * @retval None
Kojto 110:165afa46840b 366 */
Kojto 110:165afa46840b 367 #define __HAL_SPDIFRX_RCV(__HANDLE__) ((__HANDLE__)->Instance->CR |= SPDIFRX_STATE_RCV)
Kojto 110:165afa46840b 368
Kojto 110:165afa46840b 369 /** @brief Enable or disable the specified SPDIFRX interrupts.
Kojto 110:165afa46840b 370 * @param __HANDLE__: specifies the SPDIFRX Handle.
Kojto 110:165afa46840b 371 * @param __INTERRUPT__: specifies the interrupt source to enable or disable.
Kojto 110:165afa46840b 372 * This parameter can be one of the following values:
Kojto 110:165afa46840b 373 * @arg SPDIFRX_IT_RXNE
Kojto 110:165afa46840b 374 * @arg SPDIFRX_IT_CSRNE
Kojto 110:165afa46840b 375 * @arg SPDIFRX_IT_PERRIE
Kojto 110:165afa46840b 376 * @arg SPDIFRX_IT_OVRIE
Kojto 110:165afa46840b 377 * @arg SPDIFRX_IT_SBLKIE
Kojto 110:165afa46840b 378 * @arg SPDIFRX_IT_SYNCDIE
Kojto 110:165afa46840b 379 * @arg SPDIFRX_IT_IFEIE
Kojto 110:165afa46840b 380 * @retval None
Kojto 122:f9eeca106725 381 */
Kojto 110:165afa46840b 382 #define __HAL_SPDIFRX_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->IMR |= (__INTERRUPT__))
Kojto 110:165afa46840b 383 #define __HAL_SPDIFRX_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->IMR &= (uint16_t)(~(__INTERRUPT__)))
Kojto 122:f9eeca106725 384
Kojto 110:165afa46840b 385 /** @brief Checks if the specified SPDIFRX interrupt source is enabled or disabled.
Kojto 110:165afa46840b 386 * @param __HANDLE__: specifies the SPDIFRX Handle.
Kojto 110:165afa46840b 387 * @param __INTERRUPT__: specifies the SPDIFRX interrupt source to check.
Kojto 110:165afa46840b 388 * This parameter can be one of the following values:
Kojto 110:165afa46840b 389 * @arg SPDIFRX_IT_RXNE
Kojto 110:165afa46840b 390 * @arg SPDIFRX_IT_CSRNE
Kojto 110:165afa46840b 391 * @arg SPDIFRX_IT_PERRIE
Kojto 110:165afa46840b 392 * @arg SPDIFRX_IT_OVRIE
Kojto 110:165afa46840b 393 * @arg SPDIFRX_IT_SBLKIE
Kojto 110:165afa46840b 394 * @arg SPDIFRX_IT_SYNCDIE
Kojto 110:165afa46840b 395 * @arg SPDIFRX_IT_IFEIE
Kojto 110:165afa46840b 396 * @retval The new state of __IT__ (TRUE or FALSE).
Kojto 110:165afa46840b 397 */
Kojto 110:165afa46840b 398 #define __HAL_SPDIFRX_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((((__HANDLE__)->Instance->IMR & (__INTERRUPT__)) == (__INTERRUPT__)) ? SET : RESET)
Kojto 110:165afa46840b 399
Kojto 110:165afa46840b 400 /** @brief Checks whether the specified SPDIFRX flag is set or not.
Kojto 110:165afa46840b 401 * @param __HANDLE__: specifies the SPDIFRX Handle.
Kojto 110:165afa46840b 402 * @param __FLAG__: specifies the flag to check.
Kojto 110:165afa46840b 403 * This parameter can be one of the following values:
Kojto 110:165afa46840b 404 * @arg SPDIFRX_FLAG_RXNE
Kojto 110:165afa46840b 405 * @arg SPDIFRX_FLAG_CSRNE
Kojto 110:165afa46840b 406 * @arg SPDIFRX_FLAG_PERR
Kojto 110:165afa46840b 407 * @arg SPDIFRX_FLAG_OVR
Kojto 110:165afa46840b 408 * @arg SPDIFRX_FLAG_SBD
Kojto 110:165afa46840b 409 * @arg SPDIFRX_FLAG_SYNCD
Kojto 110:165afa46840b 410 * @arg SPDIFRX_FLAG_FERR
Kojto 110:165afa46840b 411 * @arg SPDIFRX_FLAG_SERR
Kojto 110:165afa46840b 412 * @arg SPDIFRX_FLAG_TERR
Kojto 110:165afa46840b 413 * @retval The new state of __FLAG__ (TRUE or FALSE).
Kojto 110:165afa46840b 414 */
Kojto 110:165afa46840b 415 #define __HAL_SPDIFRX_GET_FLAG(__HANDLE__, __FLAG__) ((((__HANDLE__)->Instance->SR) & (__FLAG__)) == (__FLAG__))
Kojto 110:165afa46840b 416
Kojto 110:165afa46840b 417 /** @brief Clears the specified SPDIFRX SR flag, in setting the proper IFCR register bit.
Kojto 110:165afa46840b 418 * @param __HANDLE__: specifies the USART Handle.
Kojto 110:165afa46840b 419 * @param __IT_CLEAR__: specifies the interrupt clear register flag that needs to be set
Kojto 110:165afa46840b 420 * to clear the corresponding interrupt
Kojto 110:165afa46840b 421 * This parameter can be one of the following values:
Kojto 110:165afa46840b 422 * @arg SPDIFRX_FLAG_PERR
Kojto 110:165afa46840b 423 * @arg SPDIFRX_FLAG_OVR
Kojto 110:165afa46840b 424 * @arg SPDIFRX_SR_SBD
Kojto 110:165afa46840b 425 * @arg SPDIFRX_SR_SYNCD
Kojto 110:165afa46840b 426 * @retval None
Kojto 110:165afa46840b 427 */
Kojto 110:165afa46840b 428 #define __HAL_SPDIFRX_CLEAR_IT(__HANDLE__, __IT_CLEAR__) ((__HANDLE__)->Instance->IFCR = (uint32_t)(__IT_CLEAR__))
Kojto 110:165afa46840b 429
Kojto 110:165afa46840b 430 /**
Kojto 110:165afa46840b 431 * @}
Kojto 110:165afa46840b 432 */
Kojto 110:165afa46840b 433
Kojto 110:165afa46840b 434 /* Exported functions --------------------------------------------------------*/
Kojto 110:165afa46840b 435 /** @addtogroup SPDIFRX_Exported_Functions
Kojto 110:165afa46840b 436 * @{
Kojto 110:165afa46840b 437 */
Kojto 110:165afa46840b 438
Kojto 110:165afa46840b 439 /** @addtogroup SPDIFRX_Exported_Functions_Group1
Kojto 110:165afa46840b 440 * @{
Kojto 110:165afa46840b 441 */
Kojto 110:165afa46840b 442 /* Initialization/de-initialization functions **********************************/
Kojto 110:165afa46840b 443 HAL_StatusTypeDef HAL_SPDIFRX_Init(SPDIFRX_HandleTypeDef *hspdif);
Kojto 110:165afa46840b 444 HAL_StatusTypeDef HAL_SPDIFRX_DeInit (SPDIFRX_HandleTypeDef *hspdif);
Kojto 110:165afa46840b 445 void HAL_SPDIFRX_MspInit(SPDIFRX_HandleTypeDef *hspdif);
Kojto 110:165afa46840b 446 void HAL_SPDIFRX_MspDeInit(SPDIFRX_HandleTypeDef *hspdif);
Kojto 110:165afa46840b 447 HAL_StatusTypeDef HAL_SPDIFRX_SetDataFormat(SPDIFRX_HandleTypeDef *hspdif, SPDIFRX_SetDataFormatTypeDef sDataFormat);
Kojto 110:165afa46840b 448 /**
Kojto 110:165afa46840b 449 * @}
Kojto 110:165afa46840b 450 */
Kojto 110:165afa46840b 451
Kojto 110:165afa46840b 452 /** @addtogroup SPDIFRX_Exported_Functions_Group2
Kojto 110:165afa46840b 453 * @{
Kojto 110:165afa46840b 454 */
Kojto 110:165afa46840b 455 /* I/O operation functions ***************************************************/
Kojto 110:165afa46840b 456 /* Blocking mode: Polling */
Kojto 110:165afa46840b 457 HAL_StatusTypeDef HAL_SPDIFRX_ReceiveDataFlow(SPDIFRX_HandleTypeDef *hspdif, uint32_t *pData, uint16_t Size, uint32_t Timeout);
Kojto 110:165afa46840b 458 HAL_StatusTypeDef HAL_SPDIFRX_ReceiveControlFlow(SPDIFRX_HandleTypeDef *hspdif, uint32_t *pData, uint16_t Size, uint32_t Timeout);
Kojto 110:165afa46840b 459
Kojto 110:165afa46840b 460 /* Non-Blocking mode: Interrupt */
Kojto 110:165afa46840b 461 HAL_StatusTypeDef HAL_SPDIFRX_ReceiveControlFlow_IT(SPDIFRX_HandleTypeDef *hspdif, uint32_t *pData, uint16_t Size);
Kojto 110:165afa46840b 462 HAL_StatusTypeDef HAL_SPDIFRX_ReceiveDataFlow_IT(SPDIFRX_HandleTypeDef *hspdif, uint32_t *pData, uint16_t Size);
Kojto 110:165afa46840b 463 void HAL_SPDIFRX_IRQHandler(SPDIFRX_HandleTypeDef *hspdif);
Kojto 110:165afa46840b 464
Kojto 110:165afa46840b 465 /* Non-Blocking mode: DMA */
Kojto 110:165afa46840b 466 HAL_StatusTypeDef HAL_SPDIFRX_ReceiveControlFlow_DMA(SPDIFRX_HandleTypeDef *hspdif, uint32_t *pData, uint16_t Size);
Kojto 110:165afa46840b 467 HAL_StatusTypeDef HAL_SPDIFRX_ReceiveDataFlow_DMA(SPDIFRX_HandleTypeDef *hspdif, uint32_t *pData, uint16_t Size);
Kojto 110:165afa46840b 468
Kojto 110:165afa46840b 469 HAL_StatusTypeDef HAL_SPDIFRX_DMAStop(SPDIFRX_HandleTypeDef *hspdif);
Kojto 110:165afa46840b 470
Kojto 110:165afa46840b 471 /* Callbacks used in non blocking modes (Interrupt and DMA) *******************/
Kojto 110:165afa46840b 472 void HAL_SPDIFRX_RxHalfCpltCallback(SPDIFRX_HandleTypeDef *hspdif);
Kojto 110:165afa46840b 473 void HAL_SPDIFRX_RxCpltCallback(SPDIFRX_HandleTypeDef *hspdif);
Kojto 110:165afa46840b 474 void HAL_SPDIFRX_ErrorCallback(SPDIFRX_HandleTypeDef *hspdif);
Kojto 110:165afa46840b 475 void HAL_SPDIFRX_CxHalfCpltCallback(SPDIFRX_HandleTypeDef *hspdif);
Kojto 110:165afa46840b 476 void HAL_SPDIFRX_CxCpltCallback(SPDIFRX_HandleTypeDef *hspdif);
Kojto 110:165afa46840b 477 /**
Kojto 110:165afa46840b 478 * @}
Kojto 110:165afa46840b 479 */
Kojto 110:165afa46840b 480
Kojto 110:165afa46840b 481 /** @addtogroup SPDIFRX_Exported_Functions_Group3
Kojto 110:165afa46840b 482 * @{
Kojto 110:165afa46840b 483 */
Kojto 110:165afa46840b 484 /* Peripheral Control and State functions ************************************/
Kojto 110:165afa46840b 485 HAL_SPDIFRX_StateTypeDef HAL_SPDIFRX_GetState(SPDIFRX_HandleTypeDef *hspdif);
Kojto 110:165afa46840b 486 uint32_t HAL_SPDIFRX_GetError(SPDIFRX_HandleTypeDef *hspdif);
Kojto 110:165afa46840b 487 /**
Kojto 110:165afa46840b 488 * @}
Kojto 110:165afa46840b 489 */
Kojto 110:165afa46840b 490
Kojto 110:165afa46840b 491 /**
Kojto 110:165afa46840b 492 * @}
Kojto 110:165afa46840b 493 */
Kojto 110:165afa46840b 494 /* Private types -------------------------------------------------------------*/
Kojto 110:165afa46840b 495 /* Private variables ---------------------------------------------------------*/
Kojto 110:165afa46840b 496 /* Private constants ---------------------------------------------------------*/
Kojto 110:165afa46840b 497 /* Private macros ------------------------------------------------------------*/
Kojto 110:165afa46840b 498 /** @defgroup SPDIFRX_Private_Macros SPDIFRX Private Macros
Kojto 110:165afa46840b 499 * @{
Kojto 110:165afa46840b 500 */
Kojto 110:165afa46840b 501 #define IS_SPDIFRX_INPUT_SELECT(INPUT) (((INPUT) == SPDIFRX_INPUT_IN1) || \
Kojto 110:165afa46840b 502 ((INPUT) == SPDIFRX_INPUT_IN2) || \
Kojto 110:165afa46840b 503 ((INPUT) == SPDIFRX_INPUT_IN3) || \
Kojto 110:165afa46840b 504 ((INPUT) == SPDIFRX_INPUT_IN0))
Kojto 110:165afa46840b 505 #define IS_SPDIFRX_MAX_RETRIES(RET) (((RET) == SPDIFRX_MAXRETRIES_NONE) || \
Kojto 110:165afa46840b 506 ((RET) == SPDIFRX_MAXRETRIES_3) || \
Kojto 110:165afa46840b 507 ((RET) == SPDIFRX_MAXRETRIES_15) || \
Kojto 110:165afa46840b 508 ((RET) == SPDIFRX_MAXRETRIES_63))
Kojto 110:165afa46840b 509 #define IS_SPDIFRX_WAIT_FOR_ACTIVITY(VAL) (((VAL) == SPDIFRX_WAITFORACTIVITY_ON) || \
Kojto 110:165afa46840b 510 ((VAL) == SPDIFRX_WAITFORACTIVITY_OFF))
Kojto 110:165afa46840b 511 #define IS_PREAMBLE_TYPE_MASK(VAL) (((VAL) == SPDIFRX_PREAMBLETYPEMASK_ON) || \
Kojto 110:165afa46840b 512 ((VAL) == SPDIFRX_PREAMBLETYPEMASK_OFF))
Kojto 110:165afa46840b 513 #define IS_VALIDITY_MASK(VAL) (((VAL) == SPDIFRX_VALIDITYMASK_OFF) || \
Kojto 110:165afa46840b 514 ((VAL) == SPDIFRX_VALIDITYMASK_ON))
Kojto 110:165afa46840b 515 #define IS_PARITY_ERROR_MASK(VAL) (((VAL) == SPDIFRX_PARITYERRORMASK_OFF) || \
Kojto 110:165afa46840b 516 ((VAL) == SPDIFRX_PARITYERRORMASK_ON))
Kojto 110:165afa46840b 517 #define IS_SPDIFRX_CHANNEL(CHANNEL) (((CHANNEL) == SPDIFRX_CHANNEL_A) || \
Kojto 110:165afa46840b 518 ((CHANNEL) == SPDIFRX_CHANNEL_B))
Kojto 110:165afa46840b 519 #define IS_SPDIFRX_DATA_FORMAT(FORMAT) (((FORMAT) == SPDIFRX_DATAFORMAT_LSB) || \
Kojto 110:165afa46840b 520 ((FORMAT) == SPDIFRX_DATAFORMAT_MSB) || \
Kojto 110:165afa46840b 521 ((FORMAT) == SPDIFRX_DATAFORMAT_32BITS))
Kojto 110:165afa46840b 522 #define IS_STEREO_MODE(MODE) (((MODE) == SPDIFRX_STEREOMODE_DISABLE) || \
Kojto 110:165afa46840b 523 ((MODE) == SPDIFRX_STEREOMODE_ENABLE))
Kojto 122:f9eeca106725 524
Kojto 110:165afa46840b 525 #define IS_CHANNEL_STATUS_MASK(VAL) (((VAL) == SPDIFRX_CHANNELSTATUS_ON) || \
Kojto 110:165afa46840b 526 ((VAL) == SPDIFRX_CHANNELSTATUS_OFF))
Kojto 122:f9eeca106725 527 /**
Kojto 110:165afa46840b 528 * @}
Kojto 110:165afa46840b 529 */
Kojto 110:165afa46840b 530
Kojto 110:165afa46840b 531 /* Private functions ---------------------------------------------------------*/
Kojto 110:165afa46840b 532 /** @defgroup SPDIFRX_Private_Functions SPDIFRX Private Functions
Kojto 110:165afa46840b 533 * @{
Kojto 110:165afa46840b 534 */
Kojto 110:165afa46840b 535 /**
Kojto 110:165afa46840b 536 * @}
Kojto 110:165afa46840b 537 */
Kojto 110:165afa46840b 538
Kojto 110:165afa46840b 539 /**
Kojto 110:165afa46840b 540 * @}
Kojto 110:165afa46840b 541 */
Kojto 110:165afa46840b 542
Kojto 110:165afa46840b 543 /**
Kojto 110:165afa46840b 544 * @}
Kojto 110:165afa46840b 545 */
Kojto 110:165afa46840b 546 #endif /* STM32F446xx */
Kojto 110:165afa46840b 547
Kojto 110:165afa46840b 548 #ifdef __cplusplus
Kojto 110:165afa46840b 549 }
Kojto 110:165afa46840b 550 #endif
Kojto 110:165afa46840b 551
Kojto 110:165afa46840b 552
Kojto 110:165afa46840b 553 #endif /* __STM32F4xx_HAL_SPDIFRX_H */
Kojto 110:165afa46840b 554
Kojto 110:165afa46840b 555 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/