mbed official / mbed

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

Committer:
Kojto
Date:
Thu Jul 07 14:34:11 2016 +0100
Revision:
122:f9eeca106725
Parent:
92:4fc01daae5a5
Child:
123:b0220dba8be7
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 86:04dd9b1680ae 1 /**
bogdanm 86:04dd9b1680ae 2 ******************************************************************************
bogdanm 86:04dd9b1680ae 3 * @file stm32f3xx_hal_i2s_ex.h
bogdanm 86:04dd9b1680ae 4 * @author MCD Application Team
Kojto 122:f9eeca106725 5 * @version V1.2.1
Kojto 122:f9eeca106725 6 * @date 29-April-2015
bogdanm 92:4fc01daae5a5 7 * @brief Header file of I2S HAL Extended module.
bogdanm 86:04dd9b1680ae 8 ******************************************************************************
bogdanm 86:04dd9b1680ae 9 * @attention
bogdanm 86:04dd9b1680ae 10 *
Kojto 122:f9eeca106725 11 * <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
bogdanm 86:04dd9b1680ae 12 *
bogdanm 86:04dd9b1680ae 13 * Redistribution and use in source and binary forms, with or without modification,
bogdanm 86:04dd9b1680ae 14 * are permitted provided that the following conditions are met:
bogdanm 86:04dd9b1680ae 15 * 1. Redistributions of source code must retain the above copyright notice,
bogdanm 86:04dd9b1680ae 16 * this list of conditions and the following disclaimer.
bogdanm 86:04dd9b1680ae 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
bogdanm 86:04dd9b1680ae 18 * this list of conditions and the following disclaimer in the documentation
bogdanm 86:04dd9b1680ae 19 * and/or other materials provided with the distribution.
bogdanm 86:04dd9b1680ae 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
bogdanm 86:04dd9b1680ae 21 * may be used to endorse or promote products derived from this software
bogdanm 86:04dd9b1680ae 22 * without specific prior written permission.
bogdanm 86:04dd9b1680ae 23 *
bogdanm 86:04dd9b1680ae 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
bogdanm 86:04dd9b1680ae 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
bogdanm 86:04dd9b1680ae 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
bogdanm 86:04dd9b1680ae 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
bogdanm 86:04dd9b1680ae 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
bogdanm 86:04dd9b1680ae 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
bogdanm 86:04dd9b1680ae 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
bogdanm 86:04dd9b1680ae 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
bogdanm 86:04dd9b1680ae 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
bogdanm 86:04dd9b1680ae 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
bogdanm 86:04dd9b1680ae 34 *
bogdanm 86:04dd9b1680ae 35 ******************************************************************************
bogdanm 86:04dd9b1680ae 36 */
bogdanm 86:04dd9b1680ae 37
bogdanm 86:04dd9b1680ae 38 /* Define to prevent recursive inclusion -------------------------------------*/
bogdanm 86:04dd9b1680ae 39 #ifndef __STM32F3xx_HAL_I2S_EX_H
bogdanm 86:04dd9b1680ae 40 #define __STM32F3xx_HAL_I2S_EX_H
bogdanm 86:04dd9b1680ae 41
bogdanm 86:04dd9b1680ae 42 #ifdef __cplusplus
bogdanm 86:04dd9b1680ae 43 extern "C" {
bogdanm 86:04dd9b1680ae 44 #endif
bogdanm 86:04dd9b1680ae 45
bogdanm 92:4fc01daae5a5 46 #if defined(STM32F302xE) || defined(STM32F303xE) || defined(STM32F398xx) || \
bogdanm 92:4fc01daae5a5 47 defined(STM32F302xC) || defined(STM32F303xC) || defined(STM32F358xx) || \
bogdanm 92:4fc01daae5a5 48 defined(STM32F301x8) || defined(STM32F302x8) || defined(STM32F318xx) || \
bogdanm 92:4fc01daae5a5 49 defined(STM32F373xC) || defined(STM32F378xx)
bogdanm 86:04dd9b1680ae 50
bogdanm 86:04dd9b1680ae 51 /* Includes ------------------------------------------------------------------*/
bogdanm 86:04dd9b1680ae 52 #include "stm32f3xx_hal_def.h"
bogdanm 86:04dd9b1680ae 53
bogdanm 86:04dd9b1680ae 54 /** @addtogroup STM32F3xx_HAL_Driver
bogdanm 86:04dd9b1680ae 55 * @{
bogdanm 86:04dd9b1680ae 56 */
bogdanm 86:04dd9b1680ae 57
Kojto 122:f9eeca106725 58 /** @addtogroup I2SEx I2SEx
bogdanm 86:04dd9b1680ae 59 * @{
bogdanm 86:04dd9b1680ae 60 */
bogdanm 86:04dd9b1680ae 61
bogdanm 86:04dd9b1680ae 62 /* Exported types ------------------------------------------------------------*/
bogdanm 86:04dd9b1680ae 63 /* Exported constants --------------------------------------------------------*/
bogdanm 92:4fc01daae5a5 64 /* Exported macros ------------------------------------------------------------*/
bogdanm 92:4fc01daae5a5 65 /** @defgroup I2SEx_Exported_Macros I2S Extended Exported Macros
bogdanm 92:4fc01daae5a5 66 * @{
bogdanm 92:4fc01daae5a5 67 */
Kojto 122:f9eeca106725 68 #if defined(SPI_I2S_FULLDUPLEX_SUPPORT)
bogdanm 86:04dd9b1680ae 69 #define I2SxEXT(__INSTANCE__) ((__INSTANCE__) == (SPI2)? (SPI_TypeDef *)(I2S2ext_BASE): (SPI_TypeDef *)(I2S3ext_BASE))
bogdanm 86:04dd9b1680ae 70
bogdanm 86:04dd9b1680ae 71 /** @brief Enable or disable the specified I2SExt peripheral.
bogdanm 86:04dd9b1680ae 72 * @param __HANDLE__: specifies the I2S Handle.
bogdanm 86:04dd9b1680ae 73 * @retval None
bogdanm 86:04dd9b1680ae 74 */
bogdanm 86:04dd9b1680ae 75 #define __HAL_I2SEXT_ENABLE(__HANDLE__) (I2SxEXT((__HANDLE__)->Instance)->I2SCFGR |= SPI_I2SCFGR_I2SE)
bogdanm 86:04dd9b1680ae 76 #define __HAL_I2SEXT_DISABLE(__HANDLE__) (I2SxEXT((__HANDLE__)->Instance)->I2SCFGR &= ~SPI_I2SCFGR_I2SE)
bogdanm 86:04dd9b1680ae 77
bogdanm 86:04dd9b1680ae 78 /** @brief Enable or disable the specified I2SExt interrupts.
bogdanm 86:04dd9b1680ae 79 * @param __HANDLE__: specifies the I2S Handle.
bogdanm 86:04dd9b1680ae 80 * @param __INTERRUPT__: specifies the interrupt source to enable or disable.
bogdanm 86:04dd9b1680ae 81 * This parameter can be one of the following values:
bogdanm 86:04dd9b1680ae 82 * @arg I2S_IT_TXE: Tx buffer empty interrupt enable
bogdanm 86:04dd9b1680ae 83 * @arg I2S_IT_RXNE: RX buffer not empty interrupt enable
bogdanm 86:04dd9b1680ae 84 * @arg I2S_IT_ERR: Error interrupt enable
bogdanm 86:04dd9b1680ae 85 * @retval None
bogdanm 86:04dd9b1680ae 86 */
bogdanm 86:04dd9b1680ae 87 #define __HAL_I2SEXT_ENABLE_IT(__HANDLE__, __INTERRUPT__) (I2SxEXT((__HANDLE__)->Instance)->CR2 |= (__INTERRUPT__))
bogdanm 86:04dd9b1680ae 88 #define __HAL_I2SEXT_DISABLE_IT(__HANDLE__, __INTERRUPT__) (I2SxEXT((__HANDLE__)->Instance)->CR2 &= ~(__INTERRUPT__))
bogdanm 86:04dd9b1680ae 89
bogdanm 86:04dd9b1680ae 90 /** @brief Checks if the specified I2SExt interrupt source is enabled or disabled.
bogdanm 86:04dd9b1680ae 91 * @param __HANDLE__: specifies the I2S Handle.
bogdanm 86:04dd9b1680ae 92 * This parameter can be I2S where x: 1, 2, or 3 to select the I2S peripheral.
bogdanm 86:04dd9b1680ae 93 * @param __INTERRUPT__: specifies the I2S interrupt source to check.
bogdanm 86:04dd9b1680ae 94 * This parameter can be one of the following values:
bogdanm 86:04dd9b1680ae 95 * @arg I2S_IT_TXE: Tx buffer empty interrupt enable
bogdanm 86:04dd9b1680ae 96 * @arg I2S_IT_RXNE: RX buffer not empty interrupt enable
bogdanm 86:04dd9b1680ae 97 * @arg I2S_IT_ERR: Error interrupt enable
bogdanm 86:04dd9b1680ae 98 * @retval The new state of __IT__ (TRUE or FALSE).
bogdanm 86:04dd9b1680ae 99 */
bogdanm 86:04dd9b1680ae 100 #define __HAL_I2SEXT_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) (((I2SxEXT((__HANDLE__)->Instance)->CR2 & (__INTERRUPT__)) == (__INTERRUPT__)) ? SET : RESET)
bogdanm 86:04dd9b1680ae 101
bogdanm 86:04dd9b1680ae 102 /** @brief Checks whether the specified I2SExt flag is set or not.
bogdanm 86:04dd9b1680ae 103 * @param __HANDLE__: specifies the I2S Handle.
bogdanm 86:04dd9b1680ae 104 * @param __FLAG__: specifies the flag to check.
bogdanm 86:04dd9b1680ae 105 * This parameter can be one of the following values:
bogdanm 86:04dd9b1680ae 106 * @arg I2S_FLAG_RXNE: Receive buffer not empty flag
bogdanm 86:04dd9b1680ae 107 * @arg I2S_FLAG_TXE: Transmit buffer empty flag
bogdanm 86:04dd9b1680ae 108 * @arg I2S_FLAG_UDR: Underrun flag
bogdanm 86:04dd9b1680ae 109 * @arg I2S_FLAG_OVR: Overrun flag
bogdanm 86:04dd9b1680ae 110 * @arg I2S_FLAG_FRE: Frame error flag
bogdanm 86:04dd9b1680ae 111 * @arg I2S_FLAG_CHSIDE: Channel Side flag
bogdanm 86:04dd9b1680ae 112 * @arg I2S_FLAG_BSY: Busy flag
bogdanm 86:04dd9b1680ae 113 * @retval The new state of __FLAG__ (TRUE or FALSE).
bogdanm 86:04dd9b1680ae 114 */
bogdanm 86:04dd9b1680ae 115 #define __HAL_I2SEXT_GET_FLAG(__HANDLE__, __FLAG__) (((I2SxEXT((__HANDLE__)->Instance)->SR) & (__FLAG__)) == (__FLAG__))
bogdanm 86:04dd9b1680ae 116
bogdanm 86:04dd9b1680ae 117 /** @brief Clears the I2SExt OVR pending flag.
bogdanm 86:04dd9b1680ae 118 * @param __HANDLE__: specifies the I2S Handle.
bogdanm 86:04dd9b1680ae 119 * @retval None
bogdanm 86:04dd9b1680ae 120 */
bogdanm 86:04dd9b1680ae 121 #define __HAL_I2SEXT_CLEAR_OVRFLAG(__HANDLE__) do{(I2SxEXT((__HANDLE__)->Instance)->DR;\
bogdanm 86:04dd9b1680ae 122 (I2SxEXT((__HANDLE__)->Instance)->SR;}while(0)
bogdanm 86:04dd9b1680ae 123 /** @brief Clears the I2SExt UDR pending flag.
bogdanm 86:04dd9b1680ae 124 * @param __HANDLE__: specifies the I2S Handle.
bogdanm 86:04dd9b1680ae 125 * @retval None
bogdanm 86:04dd9b1680ae 126 */
bogdanm 86:04dd9b1680ae 127 #define __HAL_I2SEXT_CLEAR_UDRFLAG(__HANDLE__)(I2SxEXT((__HANDLE__)->Instance)->SR)
Kojto 122:f9eeca106725 128 #endif /* SPI_I2S_FULLDUPLEX_SUPPORT */
bogdanm 92:4fc01daae5a5 129 /**
bogdanm 92:4fc01daae5a5 130 * @}
bogdanm 92:4fc01daae5a5 131 */
bogdanm 92:4fc01daae5a5 132
bogdanm 92:4fc01daae5a5 133
bogdanm 86:04dd9b1680ae 134 /* Exported functions --------------------------------------------------------*/
bogdanm 86:04dd9b1680ae 135 /* Initialization/de-initialization functions ********************************/
bogdanm 92:4fc01daae5a5 136 /** @addtogroup I2SEx_Exported_Functions I2S Extended Exported Functions
bogdanm 92:4fc01daae5a5 137 * @{
bogdanm 92:4fc01daae5a5 138 */
bogdanm 86:04dd9b1680ae 139
Kojto 122:f9eeca106725 140 #if defined(SPI_I2S_FULLDUPLEX_SUPPORT)
Kojto 122:f9eeca106725 141 /** @addtogroup I2SEx_Exported_Functions_Group1 I2S Extended Features Functions
bogdanm 92:4fc01daae5a5 142 * @{
bogdanm 92:4fc01daae5a5 143 */
bogdanm 92:4fc01daae5a5 144
bogdanm 86:04dd9b1680ae 145 /* Extended features functions ************************************************/
bogdanm 86:04dd9b1680ae 146 /* Blocking mode: Polling */
bogdanm 86:04dd9b1680ae 147 HAL_StatusTypeDef HAL_I2SEx_TransmitReceive(I2S_HandleTypeDef *hi2s, uint16_t *pTxData, uint16_t *pRxData, uint16_t Size, uint32_t Timeout);
bogdanm 86:04dd9b1680ae 148 /* Non-Blocking mode: Interrupt */
bogdanm 86:04dd9b1680ae 149 HAL_StatusTypeDef HAL_I2SEx_TransmitReceive_IT(I2S_HandleTypeDef *hi2s, uint16_t *pTxData, uint16_t *pRxData, uint16_t Size);
bogdanm 86:04dd9b1680ae 150 /* Non-Blocking mode: DMA */
bogdanm 86:04dd9b1680ae 151 HAL_StatusTypeDef HAL_I2SEx_TransmitReceive_DMA(I2S_HandleTypeDef *hi2s, uint16_t *pTxData, uint16_t *pRxData, uint16_t Size);
bogdanm 92:4fc01daae5a5 152 /**
bogdanm 92:4fc01daae5a5 153 * @}
bogdanm 92:4fc01daae5a5 154 */
Kojto 122:f9eeca106725 155 #endif /* SPI_I2S_FULLDUPLEX_SUPPORT */
bogdanm 86:04dd9b1680ae 156
bogdanm 92:4fc01daae5a5 157 /**
bogdanm 92:4fc01daae5a5 158 * @}
bogdanm 92:4fc01daae5a5 159 */
bogdanm 92:4fc01daae5a5 160
bogdanm 92:4fc01daae5a5 161 /**
bogdanm 92:4fc01daae5a5 162 * @}
bogdanm 92:4fc01daae5a5 163 */
bogdanm 92:4fc01daae5a5 164
Kojto 122:f9eeca106725 165 /** @addtogroup I2S I2S
bogdanm 92:4fc01daae5a5 166 * @{
bogdanm 92:4fc01daae5a5 167 */
bogdanm 92:4fc01daae5a5 168
bogdanm 92:4fc01daae5a5 169 /** @addtogroup I2S_Exported_Functions I2S Exported Functions
bogdanm 92:4fc01daae5a5 170 * @{
bogdanm 92:4fc01daae5a5 171 */
Kojto 122:f9eeca106725 172 #if defined(SPI_I2S_FULLDUPLEX_SUPPORT)
Kojto 122:f9eeca106725 173 /** @addtogroup I2S_Exported_Functions_Group2 IO operation functions
bogdanm 92:4fc01daae5a5 174 * @{
bogdanm 92:4fc01daae5a5 175 */
bogdanm 86:04dd9b1680ae 176 /* I2S IRQHandler and Callbacks used in non blocking modes (Interrupt and DMA) */
bogdanm 86:04dd9b1680ae 177 void HAL_I2S_FullDuplex_IRQHandler(I2S_HandleTypeDef *hi2s);
bogdanm 86:04dd9b1680ae 178 void HAL_I2S_TxRxCpltCallback(I2S_HandleTypeDef *hi2s);
bogdanm 92:4fc01daae5a5 179 /**
bogdanm 92:4fc01daae5a5 180 * @}
bogdanm 92:4fc01daae5a5 181 */
Kojto 122:f9eeca106725 182 #endif /* SPI_I2S_FULLDUPLEX_SUPPORT */
bogdanm 86:04dd9b1680ae 183
bogdanm 92:4fc01daae5a5 184 /** @addtogroup I2S_Exported_Functions_Group3 Peripheral State and Errors functions
bogdanm 92:4fc01daae5a5 185 * @{
bogdanm 92:4fc01daae5a5 186 */
bogdanm 86:04dd9b1680ae 187 /* Peripheral Control and State functions ************************************/
bogdanm 86:04dd9b1680ae 188 HAL_StatusTypeDef HAL_I2S_DMAPause(I2S_HandleTypeDef *hi2s);
bogdanm 86:04dd9b1680ae 189 HAL_StatusTypeDef HAL_I2S_DMAResume(I2S_HandleTypeDef *hi2s);
bogdanm 86:04dd9b1680ae 190 HAL_StatusTypeDef HAL_I2S_DMAStop(I2S_HandleTypeDef *hi2s);
bogdanm 86:04dd9b1680ae 191
bogdanm 86:04dd9b1680ae 192 /**
bogdanm 86:04dd9b1680ae 193 * @}
bogdanm 86:04dd9b1680ae 194 */
bogdanm 86:04dd9b1680ae 195
bogdanm 86:04dd9b1680ae 196 /**
bogdanm 86:04dd9b1680ae 197 * @}
bogdanm 86:04dd9b1680ae 198 */
bogdanm 86:04dd9b1680ae 199
bogdanm 92:4fc01daae5a5 200 /**
bogdanm 92:4fc01daae5a5 201 * @}
bogdanm 92:4fc01daae5a5 202 */
bogdanm 92:4fc01daae5a5 203
bogdanm 92:4fc01daae5a5 204 /**
bogdanm 92:4fc01daae5a5 205 * @}
bogdanm 92:4fc01daae5a5 206 */
bogdanm 92:4fc01daae5a5 207 #endif /* STM32F302xE || STM32F303xE || STM32F398xx || */
bogdanm 92:4fc01daae5a5 208 /* STM32F302xC || STM32F303xC || STM32F358xx || */
bogdanm 92:4fc01daae5a5 209 /* STM32F301x8 || STM32F302x8 || STM32F318xx || */
bogdanm 92:4fc01daae5a5 210 /* STM32F373xC || STM32F378xx */
bogdanm 86:04dd9b1680ae 211
bogdanm 86:04dd9b1680ae 212 #ifdef __cplusplus
bogdanm 86:04dd9b1680ae 213 }
bogdanm 86:04dd9b1680ae 214 #endif
bogdanm 86:04dd9b1680ae 215
bogdanm 86:04dd9b1680ae 216
bogdanm 86:04dd9b1680ae 217 #endif /* __STM32F3xx_HAL_I2S_EX_H */
bogdanm 86:04dd9b1680ae 218
bogdanm 86:04dd9b1680ae 219 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/