]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - protocol/lufa/LUFA-120730/LUFA/Drivers/USB/Core/USBController.h
Remove core library and build files
[qmk_firmware.git] / protocol / lufa / LUFA-120730 / LUFA / Drivers / USB / Core / USBController.h
diff --git a/protocol/lufa/LUFA-120730/LUFA/Drivers/USB/Core/USBController.h b/protocol/lufa/LUFA-120730/LUFA/Drivers/USB/Core/USBController.h
deleted file mode 100644 (file)
index 9b1f0a9..0000000
+++ /dev/null
@@ -1,151 +0,0 @@
-/*\r
-             LUFA Library\r
-     Copyright (C) Dean Camera, 2012.\r
-\r
-  dean [at] fourwalledcubicle [dot] com\r
-           www.lufa-lib.org\r
-*/\r
-\r
-/*\r
-  Copyright 2012  Dean Camera (dean [at] fourwalledcubicle [dot] com)\r
-\r
-  Permission to use, copy, modify, distribute, and sell this\r
-  software and its documentation for any purpose is hereby granted\r
-  without fee, provided that the above copyright notice appear in\r
-  all copies and that both that the copyright notice and this\r
-  permission notice and warranty disclaimer appear in supporting\r
-  documentation, and that the name of the author not be used in\r
-  advertising or publicity pertaining to distribution of the\r
-  software without specific, written prior permission.\r
-\r
-  The author disclaim all warranties with regard to this\r
-  software, including all implied warranties of merchantability\r
-  and fitness.  In no event shall the author be liable for any\r
-  special, indirect or consequential damages or any damages\r
-  whatsoever resulting from loss of use, data or profits, whether\r
-  in an action of contract, negligence or other tortious action,\r
-  arising out of or in connection with the use or performance of\r
-  this software.\r
-*/\r
-\r
-/** \file\r
- *  \brief Common USB Controller definitions for all architectures.\r
- *  \copydetails Group_USBManagement\r
- *\r
- *  \note This file should not be included directly. It is automatically included as needed by the USB driver\r
- *        dispatch header located in LUFA/Drivers/USB/USB.h.\r
- */\r
-\r
-/** \ingroup Group_USB\r
- *  \defgroup Group_USBManagement USB Interface Management\r
- *  \brief USB Controller definitions for general USB controller management.\r
- *\r
- *  Functions, macros, variables, enums and types related to the setup and management of the USB interface.\r
- *\r
- *  @{\r
- */\r
-\r
-#ifndef __USBCONTROLLER_H__\r
-#define __USBCONTROLLER_H__\r
-\r
-       /* Includes: */\r
-               #include "../../../Common/Common.h"\r
-               #include "USBMode.h"\r
-\r
-       /* Enable C linkage for C++ Compilers: */\r
-               #if defined(__cplusplus)\r
-                       extern "C" {\r
-               #endif\r
-\r
-       /* Preprocessor Checks and Defines: */\r
-               #if !defined(__INCLUDE_FROM_USB_DRIVER)\r
-                       #error Do not include this file directly. Include LUFA/Drivers/USB/USB.h instead.\r
-               #endif\r
-\r
-       /* Defines: */\r
-               /** \name Endpoint Direction Masks */\r
-               //@{\r
-               /** Endpoint direction mask, for masking against endpoint addresses to retrieve the endpoint's\r
-                *  direction for comparing with the \c ENDPOINT_DIR_* masks.\r
-                */\r
-               #define ENDPOINT_DIR_MASK                  0x80\r
-\r
-               /** Endpoint address direction mask for an OUT direction (Host to Device) endpoint. This may be ORed with\r
-                *  the index of the address within a device to obtain the full endpoint address.\r
-                */\r
-               #define ENDPOINT_DIR_OUT                   0x00\r
-\r
-               /** Endpoint address direction mask for an IN direction (Device to Host) endpoint. This may be ORed with\r
-                *  the index of the address within a device to obtain the full endpoint address.\r
-                */\r
-               #define ENDPOINT_DIR_IN                    0x80\r
-               //@}\r
-\r
-               /** \name Pipe Direction Masks */\r
-               //@{\r
-               /** Pipe direction mask, for masking against pipe addresses to retrieve the pipe's\r
-                *  direction for comparing with the \c PIPE_DIR_* masks.\r
-                */\r
-               #define PIPE_DIR_MASK                      0x80\r
-\r
-               /** Endpoint address direction mask for an OUT direction (Host to Device) endpoint. This may be ORed with\r
-                *  the index of the address within a device to obtain the full endpoint address.\r
-                */\r
-               #define PIPE_DIR_OUT                       0x00\r
-\r
-               /** Endpoint address direction mask for an IN direction (Device to Host) endpoint. This may be ORed with\r
-                *  the index of the address within a device to obtain the full endpoint address.\r
-                */\r
-               #define PIPE_DIR_IN                        0x80\r
-               //@}\r
-\r
-               /** \name Endpoint/Pipe Type Masks */\r
-               //@{\r
-               /** Mask for determining the type of an endpoint from an endpoint descriptor. This should then be compared\r
-                *  with the \c EP_TYPE_* masks to determine the exact type of the endpoint.\r
-                */\r
-               #define EP_TYPE_MASK                       0x03\r
-\r
-               /** Mask for a CONTROL type endpoint or pipe.\r
-                *\r
-                *  \note See \ref Group_EndpointManagement and \ref Group_PipeManagement for endpoint/pipe functions.\r
-                */\r
-               #define EP_TYPE_CONTROL                    0x00\r
-\r
-               /** Mask for an ISOCHRONOUS type endpoint or pipe.\r
-                *\r
-                *  \note See \ref Group_EndpointManagement and \ref Group_PipeManagement for endpoint/pipe functions.\r
-                */\r
-               #define EP_TYPE_ISOCHRONOUS                0x01\r
-\r
-               /** Mask for a BULK type endpoint or pipe.\r
-                *\r
-                *  \note See \ref Group_EndpointManagement and \ref Group_PipeManagement for endpoint/pipe functions.\r
-                */\r
-               #define EP_TYPE_BULK                       0x02\r
-\r
-               /** Mask for an INTERRUPT type endpoint or pipe.\r
-                *\r
-                *  \note See \ref Group_EndpointManagement and \ref Group_PipeManagement for endpoint/pipe functions.\r
-                */\r
-               #define EP_TYPE_INTERRUPT                  0x03\r
-               //@}\r
-\r
-       /* Architecture Includes: */\r
-               #if (ARCH == ARCH_AVR8)\r
-                       #include "AVR8/USBController_AVR8.h"\r
-               #elif (ARCH == ARCH_UC3)\r
-                       #include "UC3/USBController_UC3.h"\r
-               #elif (ARCH == ARCH_XMEGA)\r
-                       #include "XMEGA/USBController_XMEGA.h"\r
-               #endif\r
-\r
-       /* Disable C linkage for C++ Compilers: */\r
-               #if defined(__cplusplus)\r
-                       }\r
-               #endif\r
-\r
-#endif\r
-\r
-/** @} */\r
-\r