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.
 
   7 /** \mainpage AVRISP MKII Programmer Project
 
   9  *  \section SSec_Compat Project Compatibility:
 
  11  *  The following list indicates what microcontrollers are compatible with this project.
 
  16  *  - Series 2 USB AVRs (8KB versions with reduced features only)
 
  18  *  \section SSec_Info USB Information:
 
  20  *  The following table gives a rundown of the USB utilization of this project.
 
  24  *   <td><b>USB Mode:</b></td>
 
  28  *   <td><b>USB Class:</b></td>
 
  29  *   <td>Vendor Specific Class</td>
 
  32  *   <td><b>USB Subclass:</b></td>
 
  36  *   <td><b>Relevant Standards:</b></td>
 
  37  *   <td>Atmel AVRISP MKII Protocol Specification</td>
 
  40  *   <td><b>Usable Speeds:</b></td>
 
  41  *   <td>Full Speed Mode</td>
 
  45  *  \section SSec_Description Project Description: 
 
  47  *  Firmware for an AVRStudio compatible AVRISP-MKII clone programmer. This project will enable the USB AVR series of
 
  48  *  microcontrollers to act as a clone of the official Atmel AVRISP-MKII programmer, usable within AVRStudio. In its
 
  49  *  most basic form, it allows for the programming of 5V AVRs from within AVRStudio with no special hardware other than
 
  50  *  the USB AVR and the parts needed for the USB interface. If the user desires, more advanced circuits incorporating
 
  51  *  level conversion can be made to allow for the programming of 3.3V AVR designs.
 
  53  *  This device spoofs Atmel's official AVRISP-MKII device PID so that it remains compatible with Atmel's AVRISP-MKII
 
  54  *  drivers. When prompted, direct your OS to install Atmel's AVRISP-MKII drivers provided with AVRStudio.
 
  56  *  Note that this design currently has the following limitations:
 
  57  *    - Minimum ISP target clock speed of 500KHz due to hardware SPI module prescaler limitations
 
  58  *    - No reversed/shorted target connector detection and notification
 
  60  *  On AVR models with an ADC converter, AVCC should be tied to 5V (e.g. VBUS) and the VTARGET_ADC_CHANNEL token should be
 
  61  *  set to an appropriate ADC channel number in the project makefile for VTARGET detection to operate correctly. On models
 
  62  *  without an ADC converter, VTARGET will report a fixed 5V level at all times.
 
  64  *  When compiled for the XPLAIN board target, this will automatically configure itself for the correct connections to the
 
  65  *  XPLAIN's XMEGA AVR, and will enable PDI/TPI only programming support (since ISP mode is not needed). Note that the
 
  66  *  first revision XPLAIN board lacks a bootloader on the AT90USB1287, and thus for this firmware to be loaded, an external
 
  67  *  programmer will be required.
 
  69  *  While this application can be compiled for USB AVRs with as little as 8KB of FLASH, for full functionality 16KB or more
 
  70  *  of FLASH is required. On 8KB devices, ISP or PDI/TPI programming support can be disabled to reduce program size.
 
  72  *  \section Sec_ISP ISP Connections
 
  73  *  Connections to the device for SPI programming (when enabled):
 
  77  *    <td><b>Programmer Pin:</b></td>
 
  78  *    <td><b>Target Device Pin:</b></td>
 
  79  *    <td><b>ISP 6 Pin Layout:</b></td>
 
  87  *    <td>ADCx <b><sup>1</sup></b></td>
 
 102  *    <td>PORTx.y <b><sup>2</sup></b></td>
 
 113  *  In addition, the AVR's XCK pin will generate a .5MHz clock when SPI programming is used, to act as an external
 
 114  *  device clock if the fuses have been mis-set. To use the recovery clock, connect XCK to the target AVR's XTAL1
 
 115  *  pin, and set the ISP programming speed to 125KHz or below.
 
 117  *  <b><sup>1</sup></b> <i>Optional, see \ref SSec_Options section - for USB AVRs with ADC modules only</i> \n
 
 118  *  <b><sup>2</sup></b> <i>See AUX line related tokens in the \ref SSec_Options section</i>
 
 120  *  \section Sec_PDI PDI Connections
 
 121  *  Connections to the device for PDI programming<b><sup>1</sup></b> (when enabled):
 
 125  *    <td><b>Programmer Pin:</b></td>
 
 126  *    <td><b>Target Device Pin:</b></td>
 
 127  *    <td><b>PDI 6 Pin Layout:</b></td>
 
 130  *    <td>MISO <b><sup>2</sup></b></td>
 
 135  *    <td>ADCx <b><sup>1</sup></b></td>
 
 150  *    <td>PORTx.y <b><sup>2, 3</sup></b></td>
 
 161  *  <b><sup>1</sup></b> <i>Optional, see \ref SSec_Options section - for USB AVRs with ADC modules only</i> \n
 
 162  *  <b><sup>2</sup></b> <i>When XPROG_VIA_HARDWARE_USART is set, the AVR's Tx and Rx become the DATA line when connected together
 
 163  *                         via a pair of 220 ohm resistors, and the AVR's XCK pin becomes CLOCK.</i> \n
 
 164  *  <b><sup>3</sup></b> <i>See AUX line related tokens in the \ref SSec_Options section</i>
 
 166  *  \section Sec_TPI TPI Connections
 
 167  *  Connections to the device for TPI programming<b><sup>1</sup></b> (when enabled):
 
 171  *    <td><b>Programmer Pin:</b></td>
 
 172  *    <td><b>Target Device Pin:</b></td>
 
 173  *    <td><b>TPI 6 Pin Layout:</b></td>
 
 176  *    <td>MISO <b><sup>2</sup></b></td>
 
 181  *    <td>ADCx <b><sup>1</sup></b></td>
 
 186  *    <td>SCLK <b><sup>2</sup></b></td>
 
 196  *    <td>PORTx.y <b><sup>3</sup></b></td>
 
 207  *  <b><sup>1</sup></b> <i>Optional, see \ref SSec_Options section - for USB AVRs with ADC modules only</i> \n
 
 208  *  <b><sup>2</sup></b> <i>When XPROG_VIA_HARDWARE_USART is set, the AVR's Tx and Rx become the DATA line when connected together
 
 209  *                         via a pair of 220 ohm resistors, and the AVR's XCK pin becomes CLOCK.</i> \n
 
 210  *  <b><sup>3</sup></b> <i>See AUX line related tokens in the \ref SSec_Options section</i>
 
 212  *  \section SSec_Options Project Options
 
 214  *  The following defines can be found in this project, which can control the project behaviour when defined, or changed in value.
 
 218  *    <td><b>Define Name:</b></td>
 
 219  *    <td><b>Location:</b></td>
 
 220  *    <td><b>Description:</b></td>
 
 223  *    <td>AUX_LINE_PORT</td>
 
 224  *    <td>Makefile CDEFS</td>
 
 225  *    <td>PORT register for the programmer's AUX target line. The use of this line varies between the programming protocols,
 
 226  *        but is generally used for the target's /RESET line. <i>Ignored when compiled for the XPLAIN board.</i></td>
 
 229  *    <td>AUX_LINE_PIN</td>
 
 230  *    <td>Makefile CDEFS</td>
 
 231  *    <td>PIN register for the programmer's AUX target line. The use of this line varies between the programming protocols,
 
 232  *        but is generally used for the target's /RESET line. <i>Ignored when compiled for the XPLAIN board.</i></td>
 
 235  *    <td>AUX_LINE_DDR</td>
 
 236  *    <td>Makefile CDEFS</td>
 
 237  *    <td>DDR register for the programmer's AUX target line. The use of this line varies between the programming protocols,
 
 238  *        but is generally used for the target's /RESET line. <i>Ignored when compiled for the XPLAIN board.</i></td>
 
 241  *    <td>AUX_LINE_MASK</td>
 
 242  *    <td>Makefile CDEFS</td>
 
 243  *    <td>Mask for the programmer's AUX target line. The use of this line varies between the programming protocols,
 
 244  *        but is generally used for the target's /RESET line. <b>Must not be the AVR's /SS pin</b>. <i>Ignored when
 
 245  *        compiled for the XPLAIN board.</i></td>
 
 248  *    <td>VTARGET_ADC_CHANNEL</td>
 
 249  *    <td>Makefile CDEFS</td>
 
 250  *    <td>ADC channel number (on supported AVRs) to use for VTARGET level detection, if NO_VTARGET_DETECT is not defined.</td> 
 
 253  *    <td>ENABLE_ISP_PROTOCOL</td>
 
 254  *    <td>Makefile CDEFS</td>
 
 255  *    <td>Define to enable SPI programming protocol support. <i>Ignored when compiled for the XPLAIN board.</i></td>  
 
 258  *    <td>ENABLE_XPROG_PROTOCOL</td>
 
 259  *    <td>Makefile CDEFS</td>
 
 260  *    <td>Define to enable PDI and TPI programming protocol support. <i>Ignored when compiled for the XPLAIN board.</i></td>  
 
 263  *    <td>XPROG_VIA_HARDWARE_USART</td>
 
 264  *    <td>Makefile CDEFS</td>
 
 265  *    <td>Define to force the PDI and TPI protocols (when enabled) to use the much faster hardware USART instead of bit-banging
 
 266  *        to match the official AVRISP pinout. This breaks pinout compatibility with the official AVRISP MKII (and requires 
 
 267  *        seperate ISP, PDI, and TPI programming headers) but increases programming speed dramatically.
 
 268  *        <i>Ignored when compiled for the XPLAIN board.</i></td>  
 
 271  *    <td>NO_VTARGET_DETECT</td>
 
 272  *    <td>Makefile CDEFS</td>
 
 273  *    <td>Define to disable VTARGET sampling and reporting on AVR models with an ADC converter. This will cause the programmer
 
 274  *        to report a fixed 5V target voltage to the host regardless of the real target voltage.</td>  
 
 277  *    <td>LIBUSB_FILTERDRV_COMPAT</td>
 
 278  *    <td>Makefile CDEFS</td>
 
 279  *    <td>Define to switch to a non-standard endpoint scheme, breaking compatibility with AVRStudio under Windows but making
 
 280  *        the code compatible with Windows builds of avrdude using the libUSB driver. Linux platforms are not affected by this