aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-08-22 01:42:09 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-08-22 01:42:09 +0000
commit81998ce297fd9959f505e96a69337f3548db0d71 (patch)
tree88dbddf9243ed4129cb70d38383511fc545d34d2 /LUFA/Drivers
parente96621983462a8cec68280f6730c6fc2f059202a (diff)
downloadlufa-81998ce297fd9959f505e96a69337f3548db0d71.tar.gz
lufa-81998ce297fd9959f505e96a69337f3548db0d71.tar.bz2
lufa-81998ce297fd9959f505e96a69337f3548db0d71.zip
Added compile time error to the AVRISP-MKII project when built for the U4 chips, as the default VTARGET detection ADC channel does not exist on these chips (thanks to Marco).
Diffstat (limited to 'LUFA/Drivers')
-rw-r--r--LUFA/Drivers/USB/LowLevel/Endpoint.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/LUFA/Drivers/USB/LowLevel/Endpoint.c b/LUFA/Drivers/USB/LowLevel/Endpoint.c
index 57c613a1f..f1ed2f9a2 100644
--- a/LUFA/Drivers/USB/LowLevel/Endpoint.c
+++ b/LUFA/Drivers/USB/LowLevel/Endpoint.c
@@ -87,6 +87,8 @@ bool Endpoint_ConfigureEndpoint_Prv(const uint8_t Number,
void Endpoint_ClearEndpoints(void)
{
+ UEINT = 0;
+
for (uint8_t EPNum = 0; EPNum < ENDPOINT_TOTAL_ENDPOINTS; EPNum++)
{
Endpoint_SelectEndpoint(EPNum);