Keyboard firmwares for Atmel AVR and Cortex-M
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

VirtualSerialHost.txt 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 CDC Host 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. *
  14. * \section Sec_Info USB Information:
  15. *
  16. * The following table gives a rundown of the USB utilization of this demo.
  17. *
  18. * <table>
  19. * <tr>
  20. * <td><b>USB Mode:</b></td>
  21. * <td>Host</td>
  22. * </tr>
  23. * <tr>
  24. * <td><b>USB Class:</b></td>
  25. * <td>Communications Device Class (CDC)</td>
  26. * </tr>
  27. * <tr>
  28. * <td><b>USB Subclass:</b></td>
  29. * <td>Abstract Control Model (ACM)</td>
  30. * </tr>
  31. * <tr>
  32. * <td><b>Relevant Standards:</b></td>
  33. * <td>USBIF CDC Class Standard</td>
  34. * </tr>
  35. * <tr>
  36. * <td><b>Supported USB Speeds:</b></td>
  37. * <td>Full Speed Mode</td>
  38. * </tr>
  39. * </table>
  40. *
  41. * \section Sec_Description Project Description:
  42. *
  43. * CDC host demonstration application. This gives a simple reference application
  44. * for implementing a USB CDC host, for CDC devices using the standard ACM profile.
  45. *
  46. * This demo prints out received CDC data through the serial port.
  47. *
  48. * Note that this demo is only compatible with devices which report the correct CDC
  49. * and ACM class, subclass and protocol values. Most USB-Serial cables have vendor
  50. * specific features, thus use vendor-specific class/subclass/protocol codes to force
  51. * the user to use specialized drivers. This demo is not compatible with such devices.
  52. *
  53. * \section Sec_Options Project Options
  54. *
  55. * The following defines can be found in this demo, which can control the demo behaviour when defined, or changed in value.
  56. *
  57. * <table>
  58. * <tr>
  59. * <td>
  60. * None
  61. * </td>
  62. * </tr>
  63. * </table>
  64. */