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 /** \page Page_OSDrivers Operating System Drivers
 
   9  *  Most of the USB classes supported by LUFA are also supported natively in
 
  10  *  most operating systems, without extra drivers being required. However, in
 
  11  *  some cases, a driver file is required in order for the device to enumerate
 
  12  *  and function correctly.
 
  14  *  \section Sec_OSClassSupport Operating System USB Class Support
 
  15  *  The table below lists the supported LUFA USB classes, and their associated
 
  16  *  <i>native</i> support on modern operating systems.
 
  20  *   <th width="200px">USB Class</th>
 
  21  *   <th width="150px">Android</th>
 
  22  *   <th width="150px">Windows</th>
 
  23  *   <th width="150px">Linux</th>
 
  24  *   <th width="150px">OS X</th>
 
  27  *   <td>Android Open Accessory</td>
 
  62  *   <td>Mass Storage</td>
 
  83  *   <td>Still Image</td>
 
  91  *  \section Sec_WinINFTemplates Windows INF Drivers
 
  92  *  Windows uses INF driver files to associate a USB device of a specific class,
 
  93  *  VID/PID ID pair, Windows Compatibility ID or other characteristic to a kernel
 
  94  *  driver. In most cases these files are build into the operating system, and
 
  95  *  no special user action or driver files are required for a device using a
 
  96  *  standard USB class to enumerate. However, for some classes, a specific INF
 
  97  *  driver must be created and given to the operating system for the device to
 
 100  *  Those USB classes requiring a custom INF driver file in Windows are listed
 
 101  *  below, along with a basic INF template for each class.
 
 103  *  \subsection SSec_WinINF_CDC Windows CDC INF Template
 
 104  *  This template is required for all CDC-ACM devices on Windows XP or newer.
 
 105  *  \verbinclude "WindowsINF/LUFA CDC-ACM.inf"
 
 107  *  \subsection SSec_WinINF_RNDIS Windows RNDIS INF Template
 
 108  *  This template is required for all RNDIS devices on Windows XP or newer.
 
 109  *  \verbinclude "WindowsINF/LUFA RNDIS.inf"