From 7aaf9b2036784fadff048172029d0a2029da0ec9 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Tue, 7 Sep 2010 03:38:11 +0000 Subject: Added new PRNT_Host_BytesReceived() and PRNT_Host_ReceiveByte() functions to the Print Host Class driver. --- Demos/Host/ClassDriver/PrinterHost/PrinterHost.c | 2 +- Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.c | 7 ++----- 2 files changed, 3 insertions(+), 6 deletions(-) (limited to 'Demos/Host') diff --git a/Demos/Host/ClassDriver/PrinterHost/PrinterHost.c b/Demos/Host/ClassDriver/PrinterHost/PrinterHost.c index e0d9726b6..677b96112 100644 --- a/Demos/Host/ClassDriver/PrinterHost/PrinterHost.c +++ b/Demos/Host/ClassDriver/PrinterHost/PrinterHost.c @@ -134,7 +134,7 @@ int main(void) printf_P(PSTR("Sending Test Page (%d bytes)...\r\n"), TestPageLength); - if (PRNT_Host_SendData(&Printer_PRNT_Interface, &TestPageData, TestPageLength) != PIPE_RWSTREAM_NoError) + if (PRNT_Host_SendString(&Printer_PRNT_Interface, &TestPageData, TestPageLength) != PIPE_RWSTREAM_NoError) { puts_P(PSTR("Error Sending Page Data.\r\n")); LEDs_SetAllLEDs(LEDMASK_USB_ERROR); diff --git a/Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.c b/Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.c index ac0ca9a2b..0b75d7507 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(); -- cgit v1.2.3