diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-02-24 06:58:23 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-02-24 06:58:23 +0000 |
commit | 071fd8ce536522ca6365580d64cd465e4c18a031 (patch) | |
tree | 604c4881c36b11f37d0203f9466d6078080847b7 /LUFA/Drivers/USB/HighLevel/USBMode.h | |
parent | a7aaa45ec4c3f415bf6073a5cc016635d5ecf77d (diff) | |
download | lufa-071fd8ce536522ca6365580d64cd465e4c18a031.tar.gz lufa-071fd8ce536522ca6365580d64cd465e4c18a031.tar.bz2 lufa-071fd8ce536522ca6365580d64cd465e4c18a031.zip |
Revert changes made for the partial port to the AVR32 architecture.
Diffstat (limited to 'LUFA/Drivers/USB/HighLevel/USBMode.h')
-rw-r--r-- | LUFA/Drivers/USB/HighLevel/USBMode.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/LUFA/Drivers/USB/HighLevel/USBMode.h b/LUFA/Drivers/USB/HighLevel/USBMode.h index ee10dea5c..ba2d45394 100644 --- a/LUFA/Drivers/USB/HighLevel/USBMode.h +++ b/LUFA/Drivers/USB/HighLevel/USBMode.h @@ -45,7 +45,7 @@ /* Preprocessor Checks: */
#if !defined(__INCLUDE_FROM_USB_DRIVER)
- #error Do not include this file directly. Include LUFA/Drivers/USB/USB.h instead.
+ #error Do not include this file directly. Include LUFA/Drivers/USB.h instead.
#endif
/* Public Interface - May be used in end-application: */
@@ -69,11 +69,6 @@ * (i.e. AT90USBXXX7) when defined.
*/
#define USB_SERIES_7_AVR
-
- /** Indicates that the target AVR microcontroller belongs to the Series UC3B USB controller
- * (i.e. AT32UC3BXXXX) when defined.
- */
- #define USB_SERIES_UC3B_AVR
/** Indicates that the target AVR microcontroller and compilation settings allow for the
* target to be configured in USB Device mode when defined.
@@ -100,11 +95,9 @@ #define USB_SERIES_6_AVR
#elif (defined(__AVR_AT90USB647__) || defined(__AVR_AT90USB1287__))
#define USB_SERIES_7_AVR
- #elif (defined(__AVR32_UC3B0256__))
- #define USB_SERIES_UC3B_AVR
#endif
- #if !defined(USB_SERIES_7_AVR) && !defined(USB_SERIES_UC3B_AVR)
+ #if !defined(USB_SERIES_7_AVR)
#if defined(USB_HOST_ONLY)
#error USB_HOST_ONLY is not available for the currently selected USB AVR model.
#endif
|