1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-12 19:10:27 +03:00
inav/lib/main/STM32H7/Drivers/BSP/Components/Common/audio.h
Marcelo Bezerra 16ebb27c8b
Merge pull request #10593 from iNavFlight/mmosca-h7a3
Update libraries - pre-req for H7A3
2025-01-22 17:51:18 +01:00

108 lines
2.4 KiB
C

/**
******************************************************************************
* @file audio.h
* @author MCD Application Team
* @brief This header file contains the common defines and functions prototypes
* for the Audio driver.
******************************************************************************
* @attention
*
* <h2><center>&copy; Copyright (c) 2018 STMicroelectronics.
* All rights reserved.</center></h2>
*
* This software component is licensed by ST under BSD 3-Clause license,
* the "License"; You may not use this file except in compliance with the
* License. You may obtain a copy of the License at:
* opensource.org/licenses/BSD-3-Clause
*
******************************************************************************
*/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef AUDIO_H
#define AUDIO_H
#ifdef __cplusplus
extern "C" {
#endif
/* Includes ------------------------------------------------------------------*/
#include <stdint.h>
/** @addtogroup BSP
* @{
*/
/** @addtogroup Components
* @{
*/
/** @addtogroup AUDIO
* @{
*/
/** @defgroup AUDIO_Exported_Constants
* @{
*/
/**
* @}
*/
/** @defgroup AUDIO_Exported_Types
* @{
*/
/** @defgroup AUDIO_Driver_structure Audio Driver structure
* @{
*/
typedef struct
{
int32_t (*Init )(void*, void*);
int32_t (*DeInit )(void*);
int32_t (*ReadID )(void*, uint32_t*);
int32_t (*Play )(void*);
int32_t (*Pause )(void*);
int32_t (*Resume )(void*);
int32_t (*Stop )(void*, uint32_t);
int32_t (*SetFrequency )(void*, uint32_t);
int32_t (*GetFrequency )(void*);
int32_t (*SetVolume )(void*, uint32_t, uint8_t);
int32_t (*GetVolume )(void*, uint32_t, uint8_t*);
int32_t (*SetMute )(void*, uint32_t);
int32_t (*SetOutputMode )(void*, uint32_t);
int32_t (*SetResolution )(void*, uint32_t);
int32_t (*GetResolution )(void*, uint32_t*);
int32_t (*SetProtocol )(void*, uint32_t);
int32_t (*GetProtocol )(void*, uint32_t*);
int32_t (*Reset )(void*);
}AUDIO_Drv_t;
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/
#ifdef __cplusplus
}
#endif
#endif /* AUDIO_H */
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/