You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
3.0 KiB

  1. /** \file
  2. *
  3. * This file contains special DoxyGen information for the generation of the main page and other special
  4. * documentation pages. It is not a project source file.
  5. */
  6. /** \mainpage Audio Input Device Demo
  7. *
  8. * \section Sec_Compat Demo Compatibility:
  9. *
  10. * The following list indicates what microcontrollers are compatible with this demo.
  11. *
  12. * \li Series 7 USB AVRs (AT90USBxxx7)
  13. * \li Series 6 USB AVRs (AT90USBxxx6)
  14. * \li Series 4 USB AVRs (ATMEGAxxU4)
  15. *
  16. * \section Sec_Info USB Information:
  17. *
  18. * The following table gives a rundown of the USB utilization of this demo.
  19. *
  20. * <table>
  21. * <tr>
  22. * <td><b>USB Mode:</b></td>
  23. * <td>Device</td>
  24. * </tr>
  25. * <tr>
  26. * <td><b>USB Class:</b></td>
  27. * <td>Audio Class</td>
  28. * </tr>
  29. * <tr>
  30. * <td><b>USB Subclass:</b></td>
  31. * <td>Standard Audio Device</td>
  32. * </tr>
  33. * <tr>
  34. * <td><b>Relevant Standards:</b></td>
  35. * <td>USBIF Audio 1.0 Class Specification \n
  36. * USBIF Audio 1.0 Class Terminal Types Specification \n
  37. * USBIF Audio 1.0 Data Formats Specification</td>
  38. * </tr>
  39. * <tr>
  40. * <td><b>Supported USB Speeds:</b></td>
  41. * <td>Full Speed Mode</td>
  42. * </tr>
  43. * </table>
  44. *
  45. * \section Sec_Description Project Description:
  46. *
  47. * Audio demonstration application. This gives a simple reference
  48. * application for implementing a USB Audio Input device using the
  49. * basic USB Audio 1.0 drivers in all modern OSes (i.e. no special drivers
  50. * required).
  51. *
  52. * On start-up the system will automatically enumerate and function as a
  53. * USB microphone. By default, the demo will produce a square wave test tone
  54. * when the board button is pressed. If USE_TEST_TONE is not defined in the
  55. * project makefile, incoming audio from the ADC channel 1 will be sampled
  56. * and sent to the host computer instead.
  57. *
  58. * When in microphone mode, connect a microphone to the ADC channel 2.
  59. *
  60. * Under Windows, if a driver request dialogue pops up, select the option
  61. * to automatically install the appropriate drivers.
  62. *
  63. * \section Sec_Options Project Options
  64. *
  65. * The following defines can be found in this demo, which can control the demo behaviour when defined, or changed in value.
  66. *
  67. * <table>
  68. * <tr>
  69. * <th><b>Define Name:</b></th>
  70. * <th><b>Location:</b></th>
  71. * <th><b>Description:</b></th>
  72. * </tr>
  73. * <tr>
  74. * <td>MIC_IN_ADC_CHANNEL</td>
  75. * <td>AppConfig.h</td>
  76. * <td>Sets the ADC channel used by the demo for the input audio samples from an attached microphone.</td>
  77. * </tr>
  78. * <tr>
  79. * <td>USE_TEST_TONE</td>
  80. * <td>AppConfig.h</td>
  81. * <td>When defined, this alters the demo to produce a square wave test tone when the first board button is pressed
  82. * instead of sampling the board microphone.</td>
  83. * </tr>
  84. * <tr>
  85. * <td>MICROPHONE_BIASED_TO_HALF_RAIL</td>
  86. * <td>AppConfig.h</td>
  87. * <td>When defined, this alters the demo so that the half VCC bias of the microphone input is subtracted.</td>
  88. * </tr>
  89. * </table>
  90. */