MCUXpresso_MKS22FN256xxx12/boards/mapsks22/usb_examples/usb_device_audio_speaker_lite/bm/audio_speaker.h
2022-06-18 14:53:46 +08:00

132 lines
5.5 KiB
C

/*
* The Clear BSD License
* Copyright (c) 2015, Freescale Semiconductor, Inc.
* Copyright 2016 NXP
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted (subject to the limitations in the disclaimer below) provided
* that the following conditions are met:
*
* o Redistributions of source code must retain the above copyright notice, this list
* of conditions and the following disclaimer.
*
* o Redistributions in binary form must reproduce the above copyright notice, this
* list of conditions and the following disclaimer in the documentation and/or
* other materials provided with the distribution.
*
* o Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY THIS LICENSE.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef __USB_AUDIO_SPEAKER_H__
#define __USB_AUDIO_SPEAKER_H__ 1U
/*******************************************************************************
* Definitions
******************************************************************************/
#if defined(USB_DEVICE_CONFIG_EHCI) && (USB_DEVICE_CONFIG_EHCI > 0U)
#define CONTROLLER_ID kUSB_ControllerEhci0
#endif
#if defined(USB_DEVICE_CONFIG_KHCI) && (USB_DEVICE_CONFIG_KHCI > 0U)
#define CONTROLLER_ID kUSB_ControllerKhci0
#endif
#if defined(USB_DEVICE_CONFIG_LPCIP3511FS) && (USB_DEVICE_CONFIG_LPCIP3511FS > 0U)
#define CONTROLLER_ID kUSB_ControllerLpcIp3511Fs0
#endif
#if defined(USB_DEVICE_CONFIG_LPCIP3511HS) && (USB_DEVICE_CONFIG_LPCIP3511HS > 0U)
#define CONTROLLER_ID kUSB_ControllerLpcIp3511Hs0
#endif
#define AUDIO_SAMPLING_RATE_KHZ (48)
#define AUDIO_SAMPLING_RATE_16KHZ (16)
#define AUDIO_SAMPLING_RATE (AUDIO_SAMPLING_RATE_KHZ * 1000)
#define AUDIO_RECORDER_DATA_WHOLE_BUFFER_LENGTH (16 * 2)
#define AUDIO_SPEAKER_DATA_WHOLE_BUFFER_LENGTH (16 * 2)
#define AUDIO_BUFFER_UPPER_LIMIT(x) (((x)*5) / 8)
#define AUDIO_BUFFER_LOWER_LIMIT(x) (((x)*3) / 8)
#define AUDIO_CALCULATE_Ff_INTERVAL (1024)
#define TSAMFREQ2BYTES(f) (f & 0xFFU), ((f >> 8U) & 0xFFU), ((f >> 16U) & 0xFFU)
#define TSAMFREQ2BYTESHS(f) (f & 0xFFU), ((f >> 8U) & 0xFFU), ((f >> 16U) & 0xFFU), ((f >> 24U) & 0xFFU)
#define AUDIO_ADJUST_MIN_STEP (0x10)
#define MUTE_CODEC_TASK (1UL << 0U)
#define UNMUTE_CODEC_TASK (1UL << 1U)
#define VOLUME_CHANGE_TASK (1UL << 2U)
#define USB_DEVICE_INTERRUPT_PRIORITY (3U)
typedef struct _usb_audio_speaker_struct
{
usb_device_handle deviceHandle;
uint32_t currentStreamOutMaxPacketSize;
uint32_t currentFeedbackMaxPacketSize;
uint8_t currentStreamInterfaceAlternateSetting;
uint8_t copyProtect;
uint8_t curMute;
uint8_t curVolume[2]; /* need to consider the endians */
uint8_t minVolume[2]; /* need to consider the endians */
uint8_t maxVolume[2]; /* need to consider the endians */
uint8_t resVolume[2]; /* need to consider the endians */
uint8_t curBass;
uint8_t minBass;
uint8_t maxBass;
uint8_t resBass;
uint8_t curMid;
uint8_t minMid;
uint8_t maxMid;
uint8_t resMid;
uint8_t curTreble;
uint8_t minTreble;
uint8_t maxTreble;
uint8_t resTreble;
uint8_t curAutomaticGain;
uint8_t curDelay[2]; /* need to consider the endians */
uint8_t minDelay[2]; /* need to consider the endians */
uint8_t maxDelay[2]; /* need to consider the endians */
uint8_t resDelay[2]; /* need to consider the endians */
uint8_t curLoudness;
uint8_t curSamplingFrequency[3]; /* need to consider the endians */
uint8_t minSamplingFrequency[3]; /* need to consider the endians */
uint8_t maxSamplingFrequency[3]; /* need to consider the endians */
uint8_t resSamplingFrequency[3]; /* need to consider the endians */
#if USBCFG_AUDIO_CLASS_2_0
uint32_t curSampleFrequency;
uint8_t curClockValid;
usb_device_control_range_struct_t controlRange;
#endif
uint8_t currentConfiguration;
uint8_t currentInterfaceAlternateSetting[USB_AUDIO_SPEAKER_INTERFACE_COUNT];
uint8_t speed;
uint8_t attach;
volatile uint8_t startPlay;
volatile uint8_t startPlayHalfFull;
volatile uint32_t tdReadNumberPlay;
volatile uint32_t tdWriteNumberPlay;
volatile uint32_t audioSendCount;
volatile uint32_t lastAudioSendCount;
volatile uint32_t usbRecvCount;
volatile uint32_t audioSendTimes;
volatile uint32_t usbRecvTimes;
volatile uint32_t speakerIntervalCount;
volatile uint32_t speakerReservedSpace;
volatile uint32_t timesFeedbackCalculate;
volatile uint32_t speakerDetachOrNoInput;
volatile uint32_t codecTask;
} usb_audio_speaker_struct_t;
#endif /* __USB_AUDIO_SPEAKER_H__ */