audio_sourcesink_desc.h 548 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright (c) 2020 Actions Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief descriptors of USB audio composite device(source + sink)
  9. */
  10. #ifndef __USB_AUDIO_SOURCESINK_DESC_H__
  11. #define __USB_AUDIO_SOURCESINK_DESC_H__
  12. #include <usb/usb_common.h>
  13. #include <usb/class/usb_audio.h>
  14. #define LOW_BYTE(x) ((x) & 0xFF)
  15. #define HIGH_BYTE(x) ((x) >> 8)
  16. static const u8_t usb_audio_sourcesink_fs_desc[] = {
  17. };
  18. static const u8_t usb_audio_sourcesink_hs_desc[] = {
  19. };
  20. #endif /* __USB_AUDIO_SOURCESINK_DESC_H__ */