aboutsummaryrefslogtreecommitdiff
path: root/Demos/Host/LowLevel/PrinterHost/Lib
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-09-07 03:38:11 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-09-07 03:38:11 +0000
commit1c104153ba5b1265d6a4210f928b13b2dcb5aeba (patch)
tree351a74c41f7fdf32bc4904b942b48e7975fdbc1a /Demos/Host/LowLevel/PrinterHost/Lib
parent6f1c3c8074122a1ca6a47427cddd9367504bd61b (diff)
Added new PRNT_Host_BytesReceived() and PRNT_Host_ReceiveByte() functions to the Print Host Class driver.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1466 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/Host/LowLevel/PrinterHost/Lib')
-rw-r--r--Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.c b/Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.c
index ac0ca9a2..0b75d750 100644
--- a/Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.c
+++ b/Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.c
@@ -56,11 +56,8 @@ uint8_t Printer_SendData(const void* const PrinterCommands,
return ErrorCode;
Pipe_ClearOUT();
- while (!(Pipe_IsOUTReady()))
- {
- if (USB_HostState == HOST_STATE_Unattached)
- return PIPE_RWSTREAM_DeviceDisconnected;
- }
+
+ Pipe_WaitUntilReady();
Pipe_Freeze();