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.

Benito.txt 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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 Benito Arduino Programmer 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 \n
  37. * Arduino Bootloader 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. * Firmware for a USB AVR powered programmer for Arduino boards using the official Arduino bootloader. This
  48. * project acts like a regular USB to Serial bridge, except that asserting the DTR line will cause a pulse
  49. * to appear on a given port pin, to control the target's /RESET pin.
  50. *
  51. * This is primarily designed to fit the Benito board from www.dorkbotpdx.org, but will suit all USB AVRs.
  52. *
  53. * After running this project for the first time on a new computer, you will need to supply the .INF file located
  54. * in this project's directory as the device's driver when running under Windows. This will enable Windows to use
  55. * its inbuilt CDC drivers, negating the need for custom drivers for the device. Other Operating Systems should
  56. * automatically use their own inbuilt CDC-ACM drivers.
  57. *
  58. * \section Sec_Options Project Options
  59. *
  60. * The following defines can be found in this project, which can control the project behaviour when defined, or changed in value.
  61. *
  62. * <table>
  63. * <tr>
  64. * <th><b>Define Name:</b></th>
  65. * <th><b>Location:</b></th>
  66. * <th><b>Description:</b></th>
  67. * </tr>
  68. * <tr>
  69. * <td>AVR_RESET_LINE_PORT</td>
  70. * <td>AppConfig.h</td>
  71. * <td>Indicates the PORT register of the pin used to generate the target /RESET line pulse.</td>
  72. * </tr>
  73. * <tr>
  74. * <td>AVR_RESET_LINE_DDR</td>
  75. * <td>AppConfig.h</td>
  76. * <td>Indicates the DDR register of the pin used to generate the target /RESET line pulse.</td>
  77. * </tr>
  78. * <tr>
  79. * <td>AVR_RESET_LINE_MASK</td>
  80. * <td>AppConfig.h</td>
  81. * <td>Indicates the mask of the pin used to generate the target /RESET line pulse.</td>
  82. * </tr>
  83. * <tr>
  84. * <td>AVR_RESET_PULSE_MS</td>
  85. * <td>AppConfig.h</td>
  86. * <td>Pulse length in milliseconds for the target /RESET pulse.</td>
  87. * </tr>
  88. * <tr>
  89. * <td>TX_RX_LED_PULSE_MS</td>
  90. * <td>AppConfig.h</td>
  91. * <td>Pulse length in milliseconds for the activity Tx/Rx LEDs.</td>
  92. * </tr>
  93. * <tr>
  94. * <td>PING_PONG_LED_PULSE_MS</td>
  95. * <td>AppConfig.h</td>
  96. * <td>Pulse length in milliseconds for the enumeration LED ping-ponging between toggles.</td>
  97. * </tr>
  98. * <tr>
  99. * <td>RECEIVE_BUFFER_FLUSH_MS</td>
  100. * <td>AppConfig.h</td>
  101. * <td>Period between flushings of received data buffer to the attached USB host.</td>
  102. * </tr>
  103. * </table>
  104. */