00001 /********************************************************************* 00002 * 00003 * Microchip USB C18 Firmware Version 1.0 00004 * 00005 ********************************************************************* 00006 * FileName: usb.h 00007 * Dependencies: See INCLUDES section below 00008 * Processor: PIC18 00009 * Compiler: C18 2.30.01+ 00010 * Company: Microchip Technology, Inc. 00011 * 00012 * Software License Agreement 00013 * 00014 * The software supplied herewith by Microchip Technology Incorporated 00015 * (the “Company”) for its PICmicro® Microcontroller is intended and 00016 * supplied to you, the Company’s customer, for use solely and 00017 * exclusively on Microchip PICmicro Microcontroller products. The 00018 * software is owned by the Company and/or its supplier, and is 00019 * protected under applicable copyright laws. All rights are reserved. 00020 * Any use in violation of the foregoing restrictions may subject the 00021 * user to criminal sanctions under applicable laws, as well as to 00022 * civil liability for the breach of the terms and conditions of this 00023 * license. 00024 * 00025 * THIS SOFTWARE IS PROVIDED IN AN “AS IS” CONDITION. NO WARRANTIES, 00026 * WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED 00027 * TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 00028 * PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. THE COMPANY SHALL NOT, 00029 * IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL OR 00030 * CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER. 00031 * 00032 * Author Date Comment 00033 *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 00034 * Rawin Rojvanit 11/19/04 Original. 00035 ********************************************************************/ 00036 #ifndef USB_H 00037 #define USB_H 00038 00039 /* 00040 * usb.h provides a centralize way to include all files 00041 * required by Microchip USB Firmware. 00042 * 00043 * The order of inclusion is important. 00044 * Dependency conflicts are resolved by the correct ordering. 00045 */ 00046 00047 #include "autofiles\usbcfg.h" 00048 #include "system\usb\usbdefs\usbdefs_std_dsc.h" 00049 #include "autofiles\usbdsc.h" 00050 00051 #include "system\usb\usbdefs\usbdefs_ep0_buff.h" 00052 #include "system\usb\usbmmap.h" 00053 00054 #include "system\usb\usbdrv\usbdrv.h" 00055 #include "system\usb\usbctrltrf\usbctrltrf.h" 00056 #include "system\usb\usb9\usb9.h" 00057 00058 #if defined(USB_USE_CDC) 00059 #include "system\usb\class\cdc\cdc.h" 00060 #endif 00061 00062 #endif //USB_H