X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/e6881fd166586793a5a90effeefe4188092f383b..eff07bb87758a12064d9de9c859b1e6e6502f2ea:/Demos/Device/LowLevel/CDC/CDC.c diff --git a/Demos/Device/LowLevel/CDC/CDC.c b/Demos/Device/LowLevel/CDC/CDC.c index 99343894e..73b486ccd 100644 --- a/Demos/Device/LowLevel/CDC/CDC.c +++ b/Demos/Device/LowLevel/CDC/CDC.c @@ -49,6 +49,70 @@ CDC_Line_Coding_t LineCoding = { .BaudRateBPS = 9600, .CharFormat = OneStopBit, .ParityType = Parity_None, .DataBits = 8 }; + +/** Indicates if the host has set the device line encoding. Until the line encoding is set by the host, the device should + * not attempt to send any bytes. + */ +bool LineEncodingSet = false; + + +#if 0 +/* NOTE: Here you can set up a standard stream using the created virtual serial port, so that the standard stream functions in + * can be used on the virtual serial port (e.g. fprintf(&USBSerial, "Test"); to print a string). + */ + +static int CDC_putchar(char c, FILE *stream) +{ + Endpoint_SelectEndpoint(CDC_TX_EPNUM); + + if (!(LineEncodingSet)) + return -1; + + while (!(Endpoint_IsReadWriteAllowed())) + { + if (USB_DeviceState != DEVICE_STATE_Configured) + return -1; + } + + Endpoint_Write_Byte(c); + Endpoint_ClearIN(); + + return 0; +} + +static int CDC_getchar(FILE *stream) +{ + int c; + + if (!(LineEncodingSet)) + return -1; + + Endpoint_SelectEndpoint(CDC_RX_EPNUM); + + for (;;) + { + while (!(Endpoint_IsReadWriteAllowed())) + { + if (USB_DeviceState != DEVICE_STATE_Configured) + return -1; + } + + if (!(Endpoint_BytesInEndpoint())) + { + Endpoint_ClearOUT(); + } + else + { + c = Endpoint_Read_Byte(); + break; + } + } + + return c; +} + +static FILE USBSerial = FDEV_SETUP_STREAM(CDC_putchar, CDC_getchar, _FDEV_SETUP_RW); +#endif /** Main program entry point. This routine contains the overall program flow, including initial * setup of all components and the main program loop. @@ -164,6 +228,9 @@ void EVENT_USB_UnhandledControlPacket(void) /* Read the line coding data in from the host into the global struct */ Endpoint_Read_Control_Stream_LE(LineCodingData, sizeof(CDC_Line_Coding_t)); + + /* Indicate that the line encoding has been set, and the device may now send data */ + LineEncodingSet = true; /* Finalize the stream transfer to clear the last packet from the host */ Endpoint_ClearIN(); @@ -181,9 +248,7 @@ void EVENT_USB_UnhandledControlPacket(void) CONTROL_LINE_OUT_* masks to determine the RTS and DTR line states using the following code: */ - /* Acknowledge status stage */ - while (!(Endpoint_IsINReady())); - Endpoint_ClearIN(); + Endpoint_ClearStatusStage(); } break; @@ -196,20 +261,23 @@ void CDC_Task(void) char* ReportString = NULL; uint8_t JoyStatus_LCL = Joystick_GetStatus(); static bool ActionSent = false; - - char* JoystickStrings[] = - { - "Joystick Up\r\n", - "Joystick Down\r\n", - "Joystick Left\r\n", - "Joystick Right\r\n", - "Joystick Pressed\r\n", - }; + char* JoystickStrings[] = + { + "Joystick Up\r\n", + "Joystick Down\r\n", + "Joystick Left\r\n", + "Joystick Right\r\n", + "Joystick Pressed\r\n", + }; + /* Device must be connected and configured for the task to run */ + if (USB_DeviceState != DEVICE_STATE_Configured) + return; + #if 0 /* NOTE: Here you can use the notification endpoint to send back line state changes to the host, for the special RS-232 - handshake signal lines (and some error states), via the CONTROL_LINE_IN_* masks and the following code: - */ + * handshake signal lines (and some error states), via the CONTROL_LINE_IN_* masks and the following code: + */ USB_Notification_Header_t Notification = (USB_Notification_Header_t) { .NotificationType = (REQDIR_DEVICETOHOST | REQTYPE_CLASS | REQREC_INTERFACE), @@ -246,7 +314,7 @@ void CDC_Task(void) { ActionSent = false; } - else if (ActionSent == false) + else if ((ActionSent == false) && LineEncodingSet) { ActionSent = true; @@ -267,7 +335,11 @@ void CDC_Task(void) if (IsFull) { /* Wait until the endpoint is ready for another packet */ - while (!(Endpoint_IsINReady())); + while (!(Endpoint_IsINReady())) + { + if (USB_DeviceState == DEVICE_STATE_Unattached) + return; + } /* Send an empty packet to ensure that the host does not buffer data sent to it */ Endpoint_ClearIN();