aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-10-30 14:03:53 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-10-30 14:03:53 +0000
commit72717825e5471dfa2f9600f75394aec91f65b922 (patch)
tree8cb474f5b38eb698aafd02b02905b4f23f347b72 /LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c
parentb714ffbfa097f2ac737f4210e818297503c3fe7e (diff)
downloadlufa-72717825e5471dfa2f9600f75394aec91f65b922.tar.gz
lufa-72717825e5471dfa2f9600f75394aec91f65b922.tar.bz2
lufa-72717825e5471dfa2f9600f75394aec91f65b922.zip
Namespace out the internal endpoint and pipe globals in the UC3 architecture.
Diffstat (limited to 'LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c')
-rw-r--r--LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c b/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c
index 19a57a1f3..7cd7ccf25 100644
--- a/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c
+++ b/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c
@@ -39,8 +39,8 @@
uint8_t USB_Device_ControlEndpointSize = ENDPOINT_CONTROLEP_DEFAULT_SIZE;
#endif
-volatile uint32_t USB_SelectedEndpoint = ENDPOINT_CONTROLEP;
-volatile uint8_t* USB_EndpointFIFOPos[ENDPOINT_TOTAL_ENDPOINTS];
+volatile uint32_t USB_Endpoint_SelectedEndpoint = ENDPOINT_CONTROLEP;
+volatile uint8_t* USB_Endpoint_FIFOPos[ENDPOINT_TOTAL_ENDPOINTS];
bool Endpoint_ConfigureEndpoint_Prv(const uint8_t Number,
const uint32_t UECFG0Data)