aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/USBtoSerial
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-05-20 06:15:21 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-05-20 06:15:21 +0000
commita883cf65dc447c66aa76d9091d6a57d690a2d61a (patch)
tree34d13357402f3939b7292654b3cbd1d4be4f838f /Projects/USBtoSerial
parent78600e24859cfdc9eb06b88055c6775dec296b94 (diff)
downloadlufa-a883cf65dc447c66aa76d9091d6a57d690a2d61a.tar.gz
lufa-a883cf65dc447c66aa76d9091d6a57d690a2d61a.tar.bz2
lufa-a883cf65dc447c66aa76d9091d6a57d690a2d61a.zip
Renamed CDC device class demos' ManagementEndpoint descriptor to NotificationEndpoint to more accurately indicate its purpose.
Diffstat (limited to 'Projects/USBtoSerial')
-rw-r--r--Projects/USBtoSerial/Descriptors.c2
-rw-r--r--Projects/USBtoSerial/Descriptors.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Projects/USBtoSerial/Descriptors.c b/Projects/USBtoSerial/Descriptors.c
index 202c3e3fe..bb2ee1098 100644
--- a/Projects/USBtoSerial/Descriptors.c
+++ b/Projects/USBtoSerial/Descriptors.c
@@ -138,7 +138,7 @@ USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor =
.Data = {0x00, 0x01}
},
- .CDC_ManagementEndpoint =
+ .CDC_NotificationEndpoint =
{
.Header = {.Size = sizeof(USB_Descriptor_Endpoint_t), .Type = DTYPE_Endpoint},
diff --git a/Projects/USBtoSerial/Descriptors.h b/Projects/USBtoSerial/Descriptors.h
index e00c5e2ed..07a361385 100644
--- a/Projects/USBtoSerial/Descriptors.h
+++ b/Projects/USBtoSerial/Descriptors.h
@@ -70,7 +70,7 @@
CDC_FUNCTIONAL_DESCRIPTOR(2) CDC_Functional_IntHeader;
CDC_FUNCTIONAL_DESCRIPTOR(1) CDC_Functional_AbstractControlManagement;
CDC_FUNCTIONAL_DESCRIPTOR(2) CDC_Functional_Union;
- USB_Descriptor_Endpoint_t CDC_ManagementEndpoint;
+ USB_Descriptor_Endpoint_t CDC_NotificationEndpoint;
USB_Descriptor_Interface_t CDC_DCI_Interface;
USB_Descriptor_Endpoint_t CDC_DataOutEndpoint;
USB_Descriptor_Endpoint_t CDC_DataInEndpoint;