Dependents:   DiscoLogger DISCO_L476VG_GlassLCD DISCO_L476VG_MicrophoneRecorder DISCO_L476VG_UART ... more

Committer:
jeromecoutant
Date:
Tue Sep 24 18:00:58 2019 +0200
Revision:
5:4943b15cce9f
Parent:
3:4c7d003a8259
Update BSP files with CubeL4 V1.14.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Jerome Coutant 1:917af0ca86df 1 /**
Jerome Coutant 1:917af0ca86df 2 ******************************************************************************
Jerome Coutant 1:917af0ca86df 3 * @file audio.h
Jerome Coutant 1:917af0ca86df 4 * @author MCD Application Team
Jerome Coutant 1:917af0ca86df 5 * @brief This header file contains the common defines and functions prototypes
Jerome Coutant 1:917af0ca86df 6 * for the Audio driver.
Jerome Coutant 1:917af0ca86df 7 ******************************************************************************
Jerome Coutant 1:917af0ca86df 8 * @attention
Jerome Coutant 1:917af0ca86df 9 *
jeromecoutant 5:4943b15cce9f 10 * <h2><center>&copy; Copyright (c) 2017 STMicroelectronics.
jeromecoutant 5:4943b15cce9f 11 * All rights reserved.</center></h2>
Jerome Coutant 1:917af0ca86df 12 *
jeromecoutant 5:4943b15cce9f 13 * This software component is licensed by ST under BSD 3-Clause license,
jeromecoutant 5:4943b15cce9f 14 * the "License"; You may not use this file except in compliance with the
jeromecoutant 5:4943b15cce9f 15 * License. You may obtain a copy of the License at:
jeromecoutant 5:4943b15cce9f 16 * opensource.org/licenses/BSD-3-Clause
Jerome Coutant 1:917af0ca86df 17 *
Jerome Coutant 1:917af0ca86df 18 ******************************************************************************
Jerome Coutant 1:917af0ca86df 19 */
Jerome Coutant 1:917af0ca86df 20
Jerome Coutant 1:917af0ca86df 21 /* Define to prevent recursive inclusion -------------------------------------*/
Jerome Coutant 1:917af0ca86df 22 #ifndef __AUDIO_H
Jerome Coutant 1:917af0ca86df 23 #define __AUDIO_H
Jerome Coutant 1:917af0ca86df 24
Jerome Coutant 1:917af0ca86df 25 #ifdef __cplusplus
Jerome Coutant 1:917af0ca86df 26 extern "C" {
Jerome Coutant 1:917af0ca86df 27 #endif
Jerome Coutant 1:917af0ca86df 28
Jerome Coutant 1:917af0ca86df 29 /* Includes ------------------------------------------------------------------*/
Jerome Coutant 1:917af0ca86df 30 #include <stdint.h>
Jerome Coutant 1:917af0ca86df 31
Jerome Coutant 1:917af0ca86df 32 /** @addtogroup BSP
Jerome Coutant 1:917af0ca86df 33 * @{
Jerome Coutant 1:917af0ca86df 34 */
Jerome Coutant 1:917af0ca86df 35
Jerome Coutant 1:917af0ca86df 36 /** @addtogroup Components
Jerome Coutant 1:917af0ca86df 37 * @{
Jerome Coutant 1:917af0ca86df 38 */
Jerome Coutant 1:917af0ca86df 39
Jerome Coutant 1:917af0ca86df 40 /** @addtogroup AUDIO
Jerome Coutant 1:917af0ca86df 41 * @{
Jerome Coutant 1:917af0ca86df 42 */
Jerome Coutant 1:917af0ca86df 43
Jerome Coutant 1:917af0ca86df 44 /** @defgroup AUDIO_Exported_Constants
Jerome Coutant 1:917af0ca86df 45 * @{
Jerome Coutant 1:917af0ca86df 46 */
Jerome Coutant 1:917af0ca86df 47
Jerome Coutant 1:917af0ca86df 48 /* Codec audio Standards */
Jerome Coutant 1:917af0ca86df 49 #define CODEC_STANDARD 0x04
Jerome Coutant 1:917af0ca86df 50 #define I2S_STANDARD I2S_STANDARD_PHILIPS
Jerome Coutant 1:917af0ca86df 51
Jerome Coutant 1:917af0ca86df 52 /**
Jerome Coutant 1:917af0ca86df 53 * @}
Jerome Coutant 1:917af0ca86df 54 */
Jerome Coutant 1:917af0ca86df 55
Jerome Coutant 1:917af0ca86df 56 /** @defgroup AUDIO_Exported_Types
Jerome Coutant 1:917af0ca86df 57 * @{
Jerome Coutant 1:917af0ca86df 58 */
Jerome Coutant 1:917af0ca86df 59
Jerome Coutant 1:917af0ca86df 60 /** @defgroup AUDIO_Driver_structure Audio Driver structure
Jerome Coutant 1:917af0ca86df 61 * @{
Jerome Coutant 1:917af0ca86df 62 */
Jerome Coutant 1:917af0ca86df 63 typedef struct
Jerome Coutant 1:917af0ca86df 64 {
Jerome Coutant 1:917af0ca86df 65 uint32_t (*Init)(uint16_t, uint16_t, uint8_t, uint32_t);
Jerome Coutant 1:917af0ca86df 66 void (*DeInit)(void);
Jerome Coutant 1:917af0ca86df 67 uint32_t (*ReadID)(uint16_t);
Jerome Coutant 1:917af0ca86df 68 uint32_t (*Play)(uint16_t, uint16_t*, uint16_t);
Jerome Coutant 1:917af0ca86df 69 uint32_t (*Pause)(uint16_t);
Jerome Coutant 1:917af0ca86df 70 uint32_t (*Resume)(uint16_t);
Jerome Coutant 1:917af0ca86df 71 uint32_t (*Stop)(uint16_t, uint32_t);
Jerome Coutant 1:917af0ca86df 72 uint32_t (*SetFrequency)(uint16_t, uint32_t);
Jerome Coutant 1:917af0ca86df 73 uint32_t (*SetVolume)(uint16_t, uint8_t);
Jerome Coutant 1:917af0ca86df 74 uint32_t (*SetMute)(uint16_t, uint32_t);
Jerome Coutant 1:917af0ca86df 75 uint32_t (*SetOutputMode)(uint16_t, uint8_t);
Jerome Coutant 1:917af0ca86df 76 uint32_t (*Reset)(uint16_t);
Jerome Coutant 1:917af0ca86df 77 }AUDIO_DrvTypeDef;
Jerome Coutant 1:917af0ca86df 78 /**
Jerome Coutant 1:917af0ca86df 79 * @}
Jerome Coutant 1:917af0ca86df 80 */
Jerome Coutant 1:917af0ca86df 81
Jerome Coutant 1:917af0ca86df 82 /**
Jerome Coutant 1:917af0ca86df 83 * @}
Jerome Coutant 1:917af0ca86df 84 */
Jerome Coutant 1:917af0ca86df 85
Jerome Coutant 1:917af0ca86df 86 /**
Jerome Coutant 1:917af0ca86df 87 * @}
Jerome Coutant 1:917af0ca86df 88 */
Jerome Coutant 1:917af0ca86df 89
Jerome Coutant 1:917af0ca86df 90 /**
Jerome Coutant 1:917af0ca86df 91 * @}
Jerome Coutant 1:917af0ca86df 92 */
Jerome Coutant 1:917af0ca86df 93
Jerome Coutant 1:917af0ca86df 94 /**
Jerome Coutant 1:917af0ca86df 95 * @}
Jerome Coutant 1:917af0ca86df 96 */
Jerome Coutant 1:917af0ca86df 97
Jerome Coutant 1:917af0ca86df 98 #ifdef __cplusplus
Jerome Coutant 1:917af0ca86df 99 }
Jerome Coutant 1:917af0ca86df 100 #endif
Jerome Coutant 1:917af0ca86df 101
Jerome Coutant 1:917af0ca86df 102 #endif /* __AUDIO_H */
Jerome Coutant 1:917af0ca86df 103
Jerome Coutant 1:917af0ca86df 104 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/