/**************************************************************************/ /* */ /* Copyright (c) Microsoft Corporation. All rights reserved. */ /* */ /* This software is licensed under the Microsoft Software License */ /* Terms for Microsoft Azure RTOS. Full text of the license can be */ /* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ /* and in the root directory of this software. */ /* */ /**************************************************************************/ /**************************************************************************/ /**************************************************************************/ /** */ /** USBX Component */ /** */ /** Audio Class */ /** */ /**************************************************************************/ /**************************************************************************/ /* Include necessary system files. */ #define UX_SOURCE_CODE #include "ux_api.h" #include "ux_host_class_audio.h" #include "ux_host_stack.h" /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _ux_host_class_audio_feedback_get PORTABLE C */ /* 6.1.12 */ /* AUTHOR */ /* */ /* Chaoqiong Xiao, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function copies packed feedback data to given buffer. */ /* Note high speed data size is 4 and full speed data size is 3 bytes. */ /* */ /* INPUT */ /* */ /* audio Pointer to audio class */ /* feedback Pointer to buffer to fill */ /* packed feedback data */ /* */ /* OUTPUT */ /* */ /* Completion Status */ /* */ /* CALLS */ /* */ /* */ /* CALLED BY */ /* */ /* Application */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 07-29-2022 Chaoqiong Xiao Initial Version 6.1.12 */ /* */ /**************************************************************************/ UINT _ux_host_class_audio_feedback_get(UX_HOST_CLASS_AUDIO *audio, UCHAR *feedback) { #if !defined(UX_HOST_CLASS_AUDIO_FEEDBACK_SUPPORT) UX_PARAMETER_NOT_USED(audio); UX_PARAMETER_NOT_USED(feedback); return(UX_FUNCTION_NOT_SUPPORTED); #else /* Ensure the instance is valid. */ if (_ux_host_stack_class_instance_verify(_ux_system_host_class_audio_name, (VOID *) audio) != UX_SUCCESS) { /* Error trap. */ _ux_system_error_handler(UX_SYSTEM_LEVEL_THREAD, UX_SYSTEM_CONTEXT_CLASS, UX_HOST_CLASS_INSTANCE_UNKNOWN); /* If trace is enabled, insert this event into the trace buffer. */ UX_TRACE_IN_LINE_INSERT(UX_TRACE_ERROR, UX_HOST_CLASS_INSTANCE_UNKNOWN, audio, 0, 0, UX_TRACE_ERRORS, 0, 0) return(UX_HOST_CLASS_INSTANCE_UNKNOWN); } feedback[0] = audio -> ux_host_class_audio_feedback_buffer[0]; feedback[1] = audio -> ux_host_class_audio_feedback_buffer[1]; feedback[2] = audio -> ux_host_class_audio_feedback_buffer[2]; if (_ux_host_class_audio_speed_get(audio) == UX_HIGH_SPEED_DEVICE) feedback[3] = audio -> ux_host_class_audio_feedback_buffer[3]; return(UX_SUCCESS); #endif }