BSP driver for DISCO_L496AG

Dependents:   DISCO_L496AG-LCD-prova_1 DISCO_L496AG-LCD-prova_2 DISCO_L496AG-LCD-demo DISCO_L496AG-SRAM-demo

Committer:
bcostm
Date:
Mon Mar 26 10:28:18 2018 +0200
Revision:
0:d83f1c8ca282
Child:
2:106c7b82e064
Add BSP files coming from CubeL4 V1.11.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bcostm 0:d83f1c8ca282 1 /**
bcostm 0:d83f1c8ca282 2 ******************************************************************************
bcostm 0:d83f1c8ca282 3 * @file audio.h
bcostm 0:d83f1c8ca282 4 * @author MCD Application Team
bcostm 0:d83f1c8ca282 5 * @brief This header file contains the common defines and functions prototypes
bcostm 0:d83f1c8ca282 6 * for the Audio driver.
bcostm 0:d83f1c8ca282 7 ******************************************************************************
bcostm 0:d83f1c8ca282 8 * @attention
bcostm 0:d83f1c8ca282 9 *
bcostm 0:d83f1c8ca282 10 * <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
bcostm 0:d83f1c8ca282 11 *
bcostm 0:d83f1c8ca282 12 * Redistribution and use in source and binary forms, with or without modification,
bcostm 0:d83f1c8ca282 13 * are permitted provided that the following conditions are met:
bcostm 0:d83f1c8ca282 14 * 1. Redistributions of source code must retain the above copyright notice,
bcostm 0:d83f1c8ca282 15 * this list of conditions and the following disclaimer.
bcostm 0:d83f1c8ca282 16 * 2. Redistributions in binary form must reproduce the above copyright notice,
bcostm 0:d83f1c8ca282 17 * this list of conditions and the following disclaimer in the documentation
bcostm 0:d83f1c8ca282 18 * and/or other materials provided with the distribution.
bcostm 0:d83f1c8ca282 19 * 3. Neither the name of STMicroelectronics nor the names of its contributors
bcostm 0:d83f1c8ca282 20 * may be used to endorse or promote products derived from this software
bcostm 0:d83f1c8ca282 21 * without specific prior written permission.
bcostm 0:d83f1c8ca282 22 *
bcostm 0:d83f1c8ca282 23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
bcostm 0:d83f1c8ca282 24 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
bcostm 0:d83f1c8ca282 25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
bcostm 0:d83f1c8ca282 26 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
bcostm 0:d83f1c8ca282 27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
bcostm 0:d83f1c8ca282 28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
bcostm 0:d83f1c8ca282 29 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
bcostm 0:d83f1c8ca282 30 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
bcostm 0:d83f1c8ca282 31 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
bcostm 0:d83f1c8ca282 32 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
bcostm 0:d83f1c8ca282 33 *
bcostm 0:d83f1c8ca282 34 ******************************************************************************
bcostm 0:d83f1c8ca282 35 */
bcostm 0:d83f1c8ca282 36
bcostm 0:d83f1c8ca282 37 /* Define to prevent recursive inclusion -------------------------------------*/
bcostm 0:d83f1c8ca282 38 #ifndef __AUDIO_H
bcostm 0:d83f1c8ca282 39 #define __AUDIO_H
bcostm 0:d83f1c8ca282 40
bcostm 0:d83f1c8ca282 41 #ifdef __cplusplus
bcostm 0:d83f1c8ca282 42 extern "C" {
bcostm 0:d83f1c8ca282 43 #endif
bcostm 0:d83f1c8ca282 44
bcostm 0:d83f1c8ca282 45 /* Includes ------------------------------------------------------------------*/
bcostm 0:d83f1c8ca282 46 #include <stdint.h>
bcostm 0:d83f1c8ca282 47
bcostm 0:d83f1c8ca282 48 /** @addtogroup BSP
bcostm 0:d83f1c8ca282 49 * @{
bcostm 0:d83f1c8ca282 50 */
bcostm 0:d83f1c8ca282 51
bcostm 0:d83f1c8ca282 52 /** @addtogroup Components
bcostm 0:d83f1c8ca282 53 * @{
bcostm 0:d83f1c8ca282 54 */
bcostm 0:d83f1c8ca282 55
bcostm 0:d83f1c8ca282 56 /** @addtogroup AUDIO
bcostm 0:d83f1c8ca282 57 * @{
bcostm 0:d83f1c8ca282 58 */
bcostm 0:d83f1c8ca282 59
bcostm 0:d83f1c8ca282 60 /** @defgroup AUDIO_Exported_Constants
bcostm 0:d83f1c8ca282 61 * @{
bcostm 0:d83f1c8ca282 62 */
bcostm 0:d83f1c8ca282 63
bcostm 0:d83f1c8ca282 64 /* Codec audio Standards */
bcostm 0:d83f1c8ca282 65 #define CODEC_STANDARD 0x04
bcostm 0:d83f1c8ca282 66 #define I2S_STANDARD I2S_STANDARD_PHILIPS
bcostm 0:d83f1c8ca282 67
bcostm 0:d83f1c8ca282 68 /**
bcostm 0:d83f1c8ca282 69 * @}
bcostm 0:d83f1c8ca282 70 */
bcostm 0:d83f1c8ca282 71
bcostm 0:d83f1c8ca282 72 /** @defgroup AUDIO_Exported_Types
bcostm 0:d83f1c8ca282 73 * @{
bcostm 0:d83f1c8ca282 74 */
bcostm 0:d83f1c8ca282 75
bcostm 0:d83f1c8ca282 76 /** @defgroup AUDIO_Driver_structure Audio Driver structure
bcostm 0:d83f1c8ca282 77 * @{
bcostm 0:d83f1c8ca282 78 */
bcostm 0:d83f1c8ca282 79 typedef struct
bcostm 0:d83f1c8ca282 80 {
bcostm 0:d83f1c8ca282 81 uint32_t (*Init)(uint16_t, uint16_t, uint8_t, uint32_t);
bcostm 0:d83f1c8ca282 82 void (*DeInit)(void);
bcostm 0:d83f1c8ca282 83 uint32_t (*ReadID)(uint16_t);
bcostm 0:d83f1c8ca282 84 uint32_t (*Play)(uint16_t, uint16_t*, uint16_t);
bcostm 0:d83f1c8ca282 85 uint32_t (*Pause)(uint16_t);
bcostm 0:d83f1c8ca282 86 uint32_t (*Resume)(uint16_t);
bcostm 0:d83f1c8ca282 87 uint32_t (*Stop)(uint16_t, uint32_t);
bcostm 0:d83f1c8ca282 88 uint32_t (*SetFrequency)(uint16_t, uint32_t);
bcostm 0:d83f1c8ca282 89 uint32_t (*SetVolume)(uint16_t, uint8_t);
bcostm 0:d83f1c8ca282 90 uint32_t (*SetMute)(uint16_t, uint32_t);
bcostm 0:d83f1c8ca282 91 uint32_t (*SetOutputMode)(uint16_t, uint8_t);
bcostm 0:d83f1c8ca282 92 uint32_t (*Reset)(uint16_t);
bcostm 0:d83f1c8ca282 93 }AUDIO_DrvTypeDef;
bcostm 0:d83f1c8ca282 94 /**
bcostm 0:d83f1c8ca282 95 * @}
bcostm 0:d83f1c8ca282 96 */
bcostm 0:d83f1c8ca282 97
bcostm 0:d83f1c8ca282 98 /**
bcostm 0:d83f1c8ca282 99 * @}
bcostm 0:d83f1c8ca282 100 */
bcostm 0:d83f1c8ca282 101
bcostm 0:d83f1c8ca282 102 /**
bcostm 0:d83f1c8ca282 103 * @}
bcostm 0:d83f1c8ca282 104 */
bcostm 0:d83f1c8ca282 105
bcostm 0:d83f1c8ca282 106 /**
bcostm 0:d83f1c8ca282 107 * @}
bcostm 0:d83f1c8ca282 108 */
bcostm 0:d83f1c8ca282 109
bcostm 0:d83f1c8ca282 110 /**
bcostm 0:d83f1c8ca282 111 * @}
bcostm 0:d83f1c8ca282 112 */
bcostm 0:d83f1c8ca282 113
bcostm 0:d83f1c8ca282 114 #ifdef __cplusplus
bcostm 0:d83f1c8ca282 115 }
bcostm 0:d83f1c8ca282 116 #endif
bcostm 0:d83f1c8ca282 117
bcostm 0:d83f1c8ca282 118 #endif /* __AUDIO_H */
bcostm 0:d83f1c8ca282 119
bcostm 0:d83f1c8ca282 120 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/