|
// DOM-IGNORE-BEGIN
|
|
/*******************************************************************************
|
|
Copyright 2015 Microchip Technology Inc. (www.microchip.com)
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
To request to license the code under the MLA license (www.microchip.com/mla_license),
|
|
please contact mla_licensing@microchip.com
|
|
*******************************************************************************/
|
|
//DOM-IGNORE-END
|
|
|
|
|
|
/*******************************************************************************
|
|
Module for Microchip USB Library
|
|
|
|
Company:
|
|
Microchip Technology Inc.
|
|
|
|
File Name:
|
|
usb.h
|
|
|
|
Summary:
|
|
This header file exposes the core library APIs and definitions for the USB
|
|
library.
|
|
|
|
Description:
|
|
This header file exposes the core library APIs and definitions for the USB
|
|
library. The user is responsible for also including the header file for
|
|
the specific driver they will be using.
|
|
*******************************************************************************/
|
|
|
|
#ifndef _USB_H_
|
|
#define _USB_H_
|
|
|
|
#include "usb_config.h"
|
|
|
|
#include "usb_common.h" // Common USB library definitions
|
|
#include "usb_ch9.h" // USB device framework definitions
|
|
|
|
#if defined( USB_SUPPORT_DEVICE )
|
|
#include "usb_device.h" // USB Device abstraction layer interface
|
|
#endif
|
|
|
|
#if defined( USB_SUPPORT_HOST )
|
|
#include "usb_host.h" // USB Host abstraction layer interface
|
|
#endif
|
|
|
|
#include "usb_hal.h" // Hardware Abstraction Layer interface
|
|
|
|
/* USB Library version number. This can be used to verify in an application
|
|
specific version of the library is being used.
|
|
*/
|
|
#define USB_MAJOR_VER 2 // Firmware version, major release number.
|
|
#define USB_MINOR_VER 18 // Firmware version, minor release number.
|
|
#define USB_DOT_VER 0 // Firmware version, dot release number.
|
|
|
|
#endif // _USB_H_
|
|
|
|
|