00001 /* ---------------------------------------------------------------------------- 00002 * SAM Software Package License 00003 * ---------------------------------------------------------------------------- 00004 * Copyright (c) 2014, Atmel Corporation 00005 * 00006 * All rights reserved. 00007 * 00008 * Redistribution and use in source and binary forms, with or without 00009 * modification, are permitted provided that the following conditions are met: 00010 * 00011 * - Redistributions of source code must retain the above copyright notice, 00012 * this list of conditions and the disclaimer below. 00013 * 00014 * Atmel's name may not be used to endorse or promote products derived from 00015 * this software without specific prior written permission. 00016 * 00017 * DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR 00018 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 00019 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE 00020 * DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT, 00021 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 00022 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, 00023 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00024 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00025 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 00026 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00027 * ---------------------------------------------------------------------------- 00028 */ 00029 00030 /** 00031 * \file usb.h 00032 * 00033 * Definition of SAM9XX5-EK usb library 00034 * 00035 */ 00036 00037 #ifndef _usb_ 00038 #define _usb_ 00039 00040 /*---------------------------------------------------------------------------- 00041 * Headers 00042 *----------------------------------------------------------------------------*/ 00043 #include "board.h" 00044 00045 #include "include/USBD.h" 00046 #include "include/USBD_HAL.h" 00047 #include "include/USBD_Config.h" 00048 #include "include/USBDescriptors.h" 00049 00050 #include "include/USBDDriver.h" 00051 00052 #include "include/AUDDescriptors.h" 00053 #include "include/AUDDFunction.h" 00054 #include "include/AUDDSpeakerDriver.h" 00055 #include "include/AUDDSpeakerPhone.h" 00056 #include "include/AUDDSpeakerPhoneDriver.h" 00057 #include "include/AUDDStream.h" 00058 #include "include/AUDRequests.h" 00059 00060 #include "include/CDCAUDDDriver.h" 00061 #include "include/CDCDescriptors.h" 00062 #include "include/CDCDSerial.h" 00063 #include "include/CDCDSerialDriver.h" 00064 #include "include/CDCDSerialPort.h" 00065 #include "include/CDCHIDDDriver.h" 00066 #include "include/CDCMSDDriver.h" 00067 #include "include/CDCNotifications.h" 00068 #include "include/CDCRequests.h" 00069 00070 #include "include/DUALCDCDDriver.h" 00071 00072 #include "include/HIDAUDDDriver.h" 00073 #include "include/HIDDescriptors.h" 00074 #include "include/HIDDFunction.h" 00075 #include "include/HIDDKeyboard.h" 00076 #include "include/HIDDKeyboardDriver.h" 00077 #include "include/HIDDMouseDriver.h" 00078 #include "include/HIDDTransferDriver.h" 00079 #include "include/HIDMSDDriver.h" 00080 #include "include/HIDReports.h" 00081 #include "include/HIDRequests.h" 00082 #include "include/HIDUsages.h" 00083 00084 #include "include/MSD.h" 00085 #include "include/MSDDriver.h" 00086 #include "include/MSDDStateMachine.h" 00087 #include "include/MSDescriptors.h" 00088 #include "include/MSDFunction.h" 00089 #include "include/MSDIOFifo.h" 00090 #include "include/MSDLun.h" 00091 00092 #include "include/SBC.h" 00093 #include "include/SBCMethods.h" 00094 00095 #include "include/USBVideo.h" 00096 00097 #include "include/USBLib_Types.h" 00098 #include "include/USBRequests.h" 00099 00100 #endif /* #ifndef _usb_ */