mbed official / mbed

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

Committer:
Kojto
Date:
Tue Feb 16 14:28:01 2016 +0000
Revision:
114:252557024ec3
Parent:
110:165afa46840b
Child:
122:f9eeca106725
Release 114 of the mbed library

Changes:
- Atmel SAM - warnings fixes
- B96B F446VE - hw control flow addition
- Remove of GCC CW which was not active
- Remove GCC CS, not released anymore - deprecated

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 106:ba1f97679dad 1 /**
Kojto 106:ba1f97679dad 2 ******************************************************************************
Kojto 106:ba1f97679dad 3 * @file stm32f4xx_hal_sai_ex.h
Kojto 106:ba1f97679dad 4 * @author MCD Application Team
Kojto 110:165afa46840b 5 * @version V1.4.1
Kojto 110:165afa46840b 6 * @date 09-October-2015
Kojto 106:ba1f97679dad 7 * @brief Header file of SAI Extension HAL module.
Kojto 106:ba1f97679dad 8 ******************************************************************************
Kojto 106:ba1f97679dad 9 * @attention
Kojto 106:ba1f97679dad 10 *
Kojto 106:ba1f97679dad 11 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
Kojto 106:ba1f97679dad 12 *
Kojto 106:ba1f97679dad 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 106:ba1f97679dad 14 * are permitted provided that the following conditions are met:
Kojto 106:ba1f97679dad 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 106:ba1f97679dad 16 * this list of conditions and the following disclaimer.
Kojto 106:ba1f97679dad 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 106:ba1f97679dad 18 * this list of conditions and the following disclaimer in the documentation
Kojto 106:ba1f97679dad 19 * and/or other materials provided with the distribution.
Kojto 106:ba1f97679dad 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 106:ba1f97679dad 21 * may be used to endorse or promote products derived from this software
Kojto 106:ba1f97679dad 22 * without specific prior written permission.
Kojto 106:ba1f97679dad 23 *
Kojto 106:ba1f97679dad 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 106:ba1f97679dad 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 106:ba1f97679dad 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 106:ba1f97679dad 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 106:ba1f97679dad 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 106:ba1f97679dad 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 106:ba1f97679dad 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 106:ba1f97679dad 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 106:ba1f97679dad 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 106:ba1f97679dad 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 106:ba1f97679dad 34 *
Kojto 106:ba1f97679dad 35 ******************************************************************************
Kojto 106:ba1f97679dad 36 */
Kojto 106:ba1f97679dad 37
Kojto 106:ba1f97679dad 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 106:ba1f97679dad 39 #ifndef __STM32F4xx_HAL_SAI_EX_H
Kojto 106:ba1f97679dad 40 #define __STM32F4xx_HAL_SAI_EX_H
Kojto 106:ba1f97679dad 41
Kojto 106:ba1f97679dad 42 #ifdef __cplusplus
Kojto 106:ba1f97679dad 43 extern "C" {
Kojto 106:ba1f97679dad 44 #endif
Kojto 106:ba1f97679dad 45
Kojto 106:ba1f97679dad 46 /* Includes ------------------------------------------------------------------*/
Kojto 106:ba1f97679dad 47 #include "stm32f4xx_hal_def.h"
Kojto 106:ba1f97679dad 48
Kojto 106:ba1f97679dad 49 /** @addtogroup STM32F4xx_HAL_Driver
Kojto 106:ba1f97679dad 50 * @{
Kojto 106:ba1f97679dad 51 */
Kojto 106:ba1f97679dad 52
Kojto 106:ba1f97679dad 53 /** @addtogroup SAIEx
Kojto 106:ba1f97679dad 54 * @{
Kojto 106:ba1f97679dad 55 */
Kojto 106:ba1f97679dad 56
Kojto 110:165afa46840b 57 #if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) ||\
Kojto 110:165afa46840b 58 defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx)
Kojto 106:ba1f97679dad 59
Kojto 106:ba1f97679dad 60 /* Exported types ------------------------------------------------------------*/
Kojto 110:165afa46840b 61 /* Exported constants --------------------------------------------------------*/
Kojto 106:ba1f97679dad 62 /* Exported functions --------------------------------------------------------*/
Kojto 106:ba1f97679dad 63 /** @addtogroup SAIEx_Exported_Functions
Kojto 106:ba1f97679dad 64 * @{
Kojto 106:ba1f97679dad 65 */
Kojto 106:ba1f97679dad 66
Kojto 106:ba1f97679dad 67 /** @addtogroup SAIEx_Exported_Functions_Group1
Kojto 106:ba1f97679dad 68 * @{
Kojto 106:ba1f97679dad 69 */
Kojto 106:ba1f97679dad 70
Kojto 106:ba1f97679dad 71 /* Extended features functions ************************************************/
Kojto 110:165afa46840b 72 void SAI_BlockSynchroConfig(SAI_HandleTypeDef *hsai);
Kojto 106:ba1f97679dad 73 uint32_t SAI_GetInputClock(SAI_HandleTypeDef *hsai);
Kojto 106:ba1f97679dad 74 /**
Kojto 106:ba1f97679dad 75 * @}
Kojto 106:ba1f97679dad 76 */
Kojto 106:ba1f97679dad 77
Kojto 106:ba1f97679dad 78 /**
Kojto 106:ba1f97679dad 79 * @}
Kojto 106:ba1f97679dad 80 */
Kojto 106:ba1f97679dad 81 /* Private types -------------------------------------------------------------*/
Kojto 106:ba1f97679dad 82 /* Private variables ---------------------------------------------------------*/
Kojto 106:ba1f97679dad 83 /* Private constants ---------------------------------------------------------*/
Kojto 106:ba1f97679dad 84 /* Private macros ------------------------------------------------------------*/
Kojto 106:ba1f97679dad 85 /* Private functions ---------------------------------------------------------*/
Kojto 106:ba1f97679dad 86
Kojto 110:165afa46840b 87 #endif /* STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx || STM32F446xx || STM32F469xx || STM32F479xx */
Kojto 106:ba1f97679dad 88 /**
Kojto 106:ba1f97679dad 89 * @}
Kojto 106:ba1f97679dad 90 */
Kojto 106:ba1f97679dad 91
Kojto 106:ba1f97679dad 92 /**
Kojto 106:ba1f97679dad 93 * @}
Kojto 106:ba1f97679dad 94 */
Kojto 106:ba1f97679dad 95
Kojto 106:ba1f97679dad 96 #ifdef __cplusplus
Kojto 106:ba1f97679dad 97 }
Kojto 106:ba1f97679dad 98 #endif
Kojto 106:ba1f97679dad 99
Kojto 106:ba1f97679dad 100 #endif /* __STM32F4xx_HAL_SAI_EX_H */
Kojto 106:ba1f97679dad 101
Kojto 106:ba1f97679dad 102 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/