aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/LowLevel/CDC/CDC.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-08-05 09:37:45 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-08-05 09:37:45 +0000
commita9d5e129b76449c73a853af450d7d353512cd3a0 (patch)
tree8779e0f6d9bd2ab4ea83a88e4a532b8daa8d5154 /Demos/Device/LowLevel/CDC/CDC.c
parent4b35dd167001233d2f44f918d3656a3f2ad80f2e (diff)
downloadlufa-a9d5e129b76449c73a853af450d7d353512cd3a0.tar.gz
lufa-a9d5e129b76449c73a853af450d7d353512cd3a0.tar.bz2
lufa-a9d5e129b76449c73a853af450d7d353512cd3a0.zip
Changed over manual loops waiting for endpoints to be ready to use the library Endpoint_WaitUntilReady() function for robustness. Fixes issues with terminated transfers on the host locking up USB devices.
Diffstat (limited to 'Demos/Device/LowLevel/CDC/CDC.c')
-rw-r--r--Demos/Device/LowLevel/CDC/CDC.c20
1 files changed, 5 insertions, 15 deletions
diff --git a/Demos/Device/LowLevel/CDC/CDC.c b/Demos/Device/LowLevel/CDC/CDC.c
index 9ee744ea0..12cd8c40f 100644
--- a/Demos/Device/LowLevel/CDC/CDC.c
+++ b/Demos/Device/LowLevel/CDC/CDC.c
@@ -62,11 +62,8 @@ static int CDC_putchar(char c, FILE *stream)
if (!(LineEncoding.BaudRateBPS))
return -1;
- while (!(Endpoint_IsReadWriteAllowed()))
- {
- if (USB_DeviceState != DEVICE_STATE_Configured)
- return -1;
- }
+ if (Endpoint_WaitUntilReady())
+ return -1;
Endpoint_Write_Byte(c);
Endpoint_ClearIN();
@@ -85,11 +82,8 @@ static int CDC_getchar(FILE *stream)
for (;;)
{
- while (!(Endpoint_IsReadWriteAllowed()))
- {
- if (USB_DeviceState != DEVICE_STATE_Configured)
- return -1;
- }
+ if (Endpoint_WaitUntilReady())
+ return -1;
if (!(Endpoint_BytesInEndpoint()))
{
@@ -327,11 +321,7 @@ void CDC_Task(void)
if (IsFull)
{
/* Wait until the endpoint is ready for another packet */
- while (!(Endpoint_IsINReady()))
- {
- if (USB_DeviceState == DEVICE_STATE_Unattached)
- return;
- }
+ Endpoint_WaitUntilReady();
/* Send an empty packet to ensure that the host does not buffer data sent to it */
Endpoint_ClearIN();