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.

USBtoSerial.txt 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 USB to Serial Converter 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. * \li Series 2 USB AVRs (AT90USBxx2, ATMEGAxxU2)
  16. *
  17. * \section Sec_Info USB Information:
  18. *
  19. * The following table gives a rundown of the USB utilization of this project.
  20. *
  21. * <table>
  22. * <tr>
  23. * <td><b>USB Mode:</b></td>
  24. * <td>Device</td>
  25. * </tr>
  26. * <tr>
  27. * <td><b>USB Class:</b></td>
  28. * <td>Communications Device Class (CDC)</td>
  29. * </tr>
  30. * <tr>
  31. * <td><b>USB Subclass:</b></td>
  32. * <td>Abstract Control Model (ACM)</td>
  33. * </tr>
  34. * <tr>
  35. * <td><b>Relevant Standards:</b></td>
  36. * <td>USBIF CDC Class Standard</td>
  37. * </tr>
  38. * <tr>
  39. * <td><b>Supported USB Speeds:</b></td>
  40. * <td>Full Speed Mode</td>
  41. * </tr>
  42. * </table>
  43. *
  44. * \section Sec_Description Project Description:
  45. *
  46. * USB to Serial bridge project. This project allows a USB AVR to serve
  47. * as a USB to USART bridge between a USB host and a device lacking a
  48. * USB port. When programmed into a USB AVR, the AVR will enumerate as a
  49. * virtual COM port.
  50. *
  51. * The AVR's hardware USART's settings will change to mirror as closely as
  52. * possible the serial settings set on the host. However, due to hardware
  53. * limitations, some options may not be supported (baud rates with unacceptable
  54. * error rates at the AVR's clock speed, data lengths other than 6, 7 or 8 bits,
  55. * 1.5 stop bits, parity other than none, even or odd).
  56. *
  57. * After running this project for the first time on a new computer,
  58. * you will need to supply the .INF file located in this project
  59. * project's directory as the device's driver when running under
  60. * Windows. This will enable Windows to use its inbuilt CDC drivers,
  61. * negating the need for custom drivers for the device. Other
  62. * Operating Systems should automatically use their own inbuilt
  63. * CDC-ACM drivers.
  64. *
  65. * \section Sec_Options Project Options
  66. *
  67. * The following defines can be found in this project, which can control the project behaviour when defined, or changed in value.
  68. *
  69. * <table>
  70. * <tr>
  71. * <td>
  72. * None
  73. * </td>
  74. * </tr>
  75. * </table>
  76. */