Keyboard firmwares for Atmel AVR and Cortex-M
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.

MIDIToneGenerator.txt 2.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 MIDI Tone Generator Project
  7. *
  8. * \section Sec_Compat Project Compatibility:
  9. *
  10. * The following list indicates what microcontrollers are compatible with this project.
  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 project.
  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 Class Specification \n
  36. * USB-MIDI Audio Class Extension Specification \n
  37. * General MIDI 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. * MIDI note synthesiser project. This project implements a basic DDS frequency synthesiser, capable of producing 8-bit PWM sine
  48. * waves of variable frequency. When attached to a USB host, this project will allow for multiple MIDI notes to be synthesised into
  49. * audiable sound via PWM, using the notes sent to MIDI channel 1.
  50. *
  51. * Outgoing audio will output in 8-bit PWM onto the timer 3 output compare channel A. Decouple the audio output with a capacitor
  52. * and attach to a speaker to hear the audio.
  53. *
  54. * \section Sec_Options Project Options
  55. *
  56. * The following defines can be found in this project, which can control the project behaviour when defined, or changed in value.
  57. *
  58. * <table>
  59. * <tr>
  60. * <th><b>Define Name:</b></th>
  61. * <th><b>Location:</b></th>
  62. * <th><b>Description:</b></th>
  63. * </tr>
  64. * <tr>
  65. * <td>MAX_SIMULTANEOUS_NOTES</td>
  66. * <td>AppConfig.h</td>
  67. * <td>Sets the maximum number of MIDI notes that can be generated simultaneously. More notes require more processing time,
  68. * and thus a value that is too high will cause audiable sound distortion due to insufficient CPU time.</td>
  69. * </tr>
  70. * </table>
  71. */