firmware/usb.h
changeset 2 2f55e5dd591d
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/firmware/usb.h	Tue Jan 29 22:31:52 2008 +0100
     1.3 @@ -0,0 +1,62 @@
     1.4 +/*********************************************************************
     1.5 + *
     1.6 + *                Microchip USB C18 Firmware Version 1.0
     1.7 + *
     1.8 + *********************************************************************
     1.9 + * FileName:        usb.h
    1.10 + * Dependencies:    See INCLUDES section below
    1.11 + * Processor:       PIC18
    1.12 + * Compiler:        C18 2.30.01+
    1.13 + * Company:         Microchip Technology, Inc.
    1.14 + *
    1.15 + * Software License Agreement
    1.16 + *
    1.17 + * The software supplied herewith by Microchip Technology Incorporated
    1.18 + * (the “Company”) for its PICmicro® Microcontroller is intended and
    1.19 + * supplied to you, the Company’s customer, for use solely and
    1.20 + * exclusively on Microchip PICmicro Microcontroller products. The
    1.21 + * software is owned by the Company and/or its supplier, and is
    1.22 + * protected under applicable copyright laws. All rights are reserved.
    1.23 + * Any use in violation of the foregoing restrictions may subject the
    1.24 + * user to criminal sanctions under applicable laws, as well as to
    1.25 + * civil liability for the breach of the terms and conditions of this
    1.26 + * license.
    1.27 + *
    1.28 + * THIS SOFTWARE IS PROVIDED IN AN “AS IS” CONDITION. NO WARRANTIES,
    1.29 + * WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED
    1.30 + * TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
    1.31 + * PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. THE COMPANY SHALL NOT,
    1.32 + * IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL OR
    1.33 + * CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
    1.34 + *
    1.35 + * Author               Date        Comment
    1.36 + *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1.37 + * Rawin Rojvanit       11/19/04    Original.
    1.38 + ********************************************************************/
    1.39 +#ifndef USB_H
    1.40 +#define USB_H
    1.41 +
    1.42 +/*
    1.43 + * usb.h provides a centralize way to include all files
    1.44 + * required by Microchip USB Firmware.
    1.45 + *
    1.46 + * The order of inclusion is important.
    1.47 + * Dependency conflicts are resolved by the correct ordering.
    1.48 + */
    1.49 +
    1.50 +#include "usbcfg.h"
    1.51 +#include "usbdefs_std_dsc.h"
    1.52 +#include "usbdsc.h"
    1.53 +
    1.54 +#include "usbdefs_ep0_buff.h"
    1.55 +#include "usbmmap.h"
    1.56 +
    1.57 +#include "usbdrv.h"
    1.58 +#include "usbctrltrf.h"
    1.59 +#include "usb9.h"
    1.60 +
    1.61 +#if defined(USB_USE_CDC)
    1.62 +#include "cdc.h"
    1.63 +#endif
    1.64 +
    1.65 +#endif //USB_H