aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/AVR8
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-08-18 10:58:52 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-08-18 10:58:52 +0000
commit7750783809a896fe7e38eebb0030b16685820d26 (patch)
tree7830469346997fb60af4e965e339ca4fd1bfdff5 /LUFA/Drivers/USB/Core/AVR8
parent0598d622d875934effdcec2f1f637fe0160b91d6 (diff)
downloadlufa-7750783809a896fe7e38eebb0030b16685820d26.tar.gz
lufa-7750783809a896fe7e38eebb0030b16685820d26.tar.bz2
lufa-7750783809a896fe7e38eebb0030b16685820d26.zip
Minor documentation improvements.
Diffstat (limited to 'LUFA/Drivers/USB/Core/AVR8')
-rw-r--r--LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h b/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h
index 57d9b0d43..906b7e873 100644
--- a/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h
+++ b/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h
@@ -124,13 +124,13 @@
#endif
#if !defined(CONTROL_ONLY_DEVICE) || defined(__DOXYGEN__)
- #if defined(USB_SERIES_4_AVR) || defined(USB_SERIES_6_AVR) || defined(USB_SERIES_7_AVR)
- #define ENDPOINT_TOTAL_ENDPOINTS 7
- #else
+ #if defined(USB_SERIES_4_AVR) || defined(USB_SERIES_6_AVR) || defined(USB_SERIES_7_AVR) || defined(__DOXYGEN__)
/** Total number of endpoints (including the default control endpoint at address 0) which may
* be used in the device. Different USB AVR models support different amounts of endpoints,
* this value reflects the maximum number of endpoints for the currently selected AVR model.
*/
+ #define ENDPOINT_TOTAL_ENDPOINTS 7
+ #else
#define ENDPOINT_TOTAL_ENDPOINTS 5
#endif
#else