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 Denver Gingerich's USBSnoop Magnetic Card Reader Project
 
   9  *  \section SSec_Compat Project Compatibility:
 
  11  *  The following list indicates what microcontrollers are compatible with this project.
 
  16  *  \section SSec_Info USB Information:
 
  18  *  The following table gives a rundown of the USB utilization of this project.
 
  22  *   <td><b>USB Mode:</b></td>
 
  26  *   <td><b>USB Class:</b></td>
 
  27  *   <td>Human Interface Device (HID)</td>
 
  30  *   <td><b>USB Subclass:</b></td>
 
  34  *   <td><b>Relevant Standards:</b></td>
 
  35  *   <td>USBIF HID Standard, USBIF HID Usage Tables</td>
 
  38  *   <td><b>Usable Speeds:</b></td>
 
  39  *   <td>Full Speed Mode</td>
 
  43  *  \section SSec_Description Project Description:
 
  45  *  Firmware for a USB AVR powered USB TTL magnetic stripe reader (using a card
 
  46  *  reader such as the Omron V3B-4K) by Denver Gingerich. This project is designed
 
  47  *  to be used with the open source Stripe Snoop project at <a>http://stripesnoop.sourceforge.net/</a>.
 
  49  *  See <a>http://ossguy.com/ss_usb/</a> for the USB reader hardware project website,
 
  50  *  including construction and support details.
 
  52  *  To use, connect your magnetic card reader device to the USB AVR as follows (pin and port mapping may be adjusted
 
  53  *  from the project makefile):
 
  57  *    <td><b>Signal:</b></td>
 
  58  *    <td><b>AVR Port:</b></td>
 
  61  *    <td>Track 1 Data</td>
 
  62  *    <td>PORTC, Pin 1</td>
 
  65  *    <td>Track 1 Clock</td>
 
  66  *    <td>PORTC, Pin 2</td>
 
  69  *    <td>Track 2 Data</td>
 
  70  *    <td>PORTC, Pin 3</td>
 
  73  *    <td>Track 2 Clock</td>
 
  74  *    <td>PORTC, Pin 0</td>
 
  77  *    <td>Track 3 Data</td>
 
  78  *    <td>PORTC, Pin 5</td>
 
  81  *    <td>Track 3 Clock</td>
 
  82  *    <td>PORTC, Pin 6</td>
 
  85  *    <td>Card Detect</td>
 
  86  *    <td>PORTC, Pin 4</td>
 
  90  *  This project is based on the LUFA Keyboard projectnstration application,
 
  91  *  written by Denver Gingerich.
 
  93  *  This application uses a keyboard HID driver to communicate the data collected
 
  94  *  a TTL magnetic stripe reader to the connected computer. The raw bitstream
 
  95  *  obtained from the magnetic stripe reader is "typed" through the keyboard
 
  96  *  driver as 0's and 1's. After every card swipe, the project will send a return key.
 
  98  *  \section SSec_Options Project Options
 
 100  *  The following defines can be found in this project, which can control the project behaviour when defined, or changed in value.
 
 104  *    <td><b>Define Name:</b></td>
 
 105  *    <td><b>Location:</b></td>
 
 106  *    <td><b>Description:</b></td>
 
 110  *    <td>CircularBitBuffer.h</td>
 
 111  *    <td>Gives the maximum number of bits per track which can be buffered by the device for later transmission to a host.</td>
 
 114  *    <td>MAG_T1_CLOCK</td>
 
 115  *    <td>Makefile LUFA_OPTS</td>
 
 116  *    <td>Mask for the magnetic card reader's CLOCK line for the reader's track 1 output.</td>
 
 119  *    <td>MAG_T1_DATA</td>
 
 120  *    <td>Makefile LUFA_OPTS</td>
 
 121  *    <td>Mask for the magnetic card reader's DATA line for the reader's track 1 output.</td>
 
 124  *    <td>MAG_T2_CLOCK</td>
 
 125  *    <td>Makefile LUFA_OPTS</td>
 
 126  *    <td>Mask for the magnetic card reader's CLOCK line for the reader's track 2 output.</td>
 
 129  *    <td>MAG_T2_DATA</td>
 
 130  *    <td>Makefile LUFA_OPTS</td>
 
 131  *    <td>Mask for the magnetic card reader's DATA line for the reader's track 2 output.</td>
 
 134  *    <td>MAG_T3_CLOCK</td>
 
 135  *    <td>Makefile LUFA_OPTS</td>
 
 136  *    <td>Mask for the magnetic card reader's CLOCK line for the reader's track 3 output.</td>
 
 139  *    <td>MAG_T3_DATA</td>
 
 140  *    <td>Makefile LUFA_OPTS</td>
 
 141  *    <td>Mask for the magnetic card reader's DATA line for the reader's track 3 output.</td>
 
 144  *    <td>MAG_CARDPRESENT</td>
 
 145  *    <td>Makefile LUFA_OPTS</td>
 
 146  *    <td>Mask for the magnetic card reader's card detection output.</td>
 
 150  *    <td>Makefile LUFA_OPTS</td>
 
 151  *    <td>PIN register that the magnetic card reader device is attached to.</td>
 
 155  *    <td>Makefile LUFA_OPTS</td>
 
 156  *    <td>PORT register that the magnetic card reader device is attached to.</td>
 
 160  *    <td>Makefile LUFA_OPTS</td>
 
 161  *    <td>DDR register that the magnetic card reader device is attached to.</td>