3      Copyright (C) Dean Camera, 2009. 
   5   dean [at] fourwalledcubicle [dot] com 
   6       www.fourwalledcubicle.com 
  10   Copyright 2009  Dean Camera (dean [at] fourwalledcubicle [dot] com) 
  12   Permission to use, copy, modify, and distribute this software 
  13   and its documentation for any purpose and without fee is hereby 
  14   granted, provided that the above copyright notice appear in all 
  15   copies and that both that the copyright notice and this 
  16   permission notice and warranty disclaimer appear in supporting 
  17   documentation, and that the name of the author not be used in 
  18   advertising or publicity pertaining to distribution of the 
  19   software without specific, written prior permission. 
  21   The author disclaim all warranties with regard to this 
  22   software, including all implied warranties of merchantability 
  23   and fitness.  In no event shall the author be liable for any 
  24   special, indirect or consequential damages or any damages 
  25   whatsoever resulting from loss of use, data or profits, whether 
  26   in an action of contract, negligence or other tortious action, 
  27   arising out of or in connection with the use or performance of 
  31 #include "../../HighLevel/USBMode.h" 
  32 #if defined(USB_CAN_BE_DEVICE) 
  34 #define  INCLUDE_FROM_CDC_CLASS_DEVICE_C 
  37 void CDC_Device_Event_Stub(void) 
  42 void CDC_Device_ProcessControlRequest(USB_ClassInfo_CDC_Device_t
* CDCInterfaceInfo
) 
  44         if (!(Endpoint_IsSETUPReceived())) 
  47         if (USB_ControlRequest
.wIndex 
!= CDCInterfaceInfo
->Config
.ControlInterfaceNumber
) 
  50         switch (USB_ControlRequest
.bRequest
) 
  52                 case REQ_GetLineEncoding
: 
  53                         if (USB_ControlRequest
.bmRequestType 
== (REQDIR_DEVICETOHOST 
| REQTYPE_CLASS 
| REQREC_INTERFACE
)) 
  55                                 Endpoint_ClearSETUP(); 
  56                                 Endpoint_Write_Control_Stream_LE(&CDCInterfaceInfo
->State
.LineEncoding
, sizeof(CDCInterfaceInfo
->State
.LineEncoding
)); 
  61                 case REQ_SetLineEncoding
: 
  62                         if (USB_ControlRequest
.bmRequestType 
== (REQDIR_HOSTTODEVICE 
| REQTYPE_CLASS 
| REQREC_INTERFACE
)) 
  64                                 Endpoint_ClearSETUP(); 
  65                                 Endpoint_Read_Control_Stream_LE(&CDCInterfaceInfo
->State
.LineEncoding
, sizeof(CDCInterfaceInfo
->State
.LineEncoding
)); 
  68                                 EVENT_CDC_Device_LineEncodingChanged(CDCInterfaceInfo
); 
  72                 case REQ_SetControlLineState
: 
  73                         if (USB_ControlRequest
.bmRequestType 
== (REQDIR_HOSTTODEVICE 
| REQTYPE_CLASS 
| REQREC_INTERFACE
)) 
  75                                 Endpoint_ClearSETUP(); 
  77                                 CDCInterfaceInfo
->State
.ControlLineStates
.HostToDevice 
= USB_ControlRequest
.wValue
; 
  79                                 EVENT_CDC_Device_ControLineStateChanged(CDCInterfaceInfo
); 
  81                                 Endpoint_ClearStatusStage(); 
  88 bool CDC_Device_ConfigureEndpoints(USB_ClassInfo_CDC_Device_t
* CDCInterfaceInfo
) 
  90         memset(&CDCInterfaceInfo
->State
, 0x00, sizeof(CDCInterfaceInfo
->State
)); 
  92         if (!(Endpoint_ConfigureEndpoint(CDCInterfaceInfo
->Config
.DataINEndpointNumber
, EP_TYPE_BULK
, 
  93                                                                  ENDPOINT_DIR_IN
, CDCInterfaceInfo
->Config
.DataINEndpointSize
, 
  94                                                                  ENDPOINT_BANK_SINGLE
))) 
  99         if (!(Endpoint_ConfigureEndpoint(CDCInterfaceInfo
->Config
.DataOUTEndpointNumber
, EP_TYPE_BULK
, 
 100                                          ENDPOINT_DIR_OUT
, CDCInterfaceInfo
->Config
.DataOUTEndpointSize
, 
 101                                          ENDPOINT_BANK_SINGLE
))) 
 106         if (!(Endpoint_ConfigureEndpoint(CDCInterfaceInfo
->Config
.NotificationEndpointNumber
, EP_TYPE_INTERRUPT
, 
 107                                          ENDPOINT_DIR_IN
, CDCInterfaceInfo
->Config
.NotificationEndpointSize
, 
 108                                          ENDPOINT_BANK_SINGLE
))) 
 116 void CDC_Device_USBTask(USB_ClassInfo_CDC_Device_t
* CDCInterfaceInfo
) 
 118         if ((USB_DeviceState 
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
)) 
 121         Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataOUTEndpointNumber
); 
 123         if (Endpoint_IsOUTReceived() && !(Endpoint_BytesInEndpoint())) 
 126         CDC_Device_Flush(CDCInterfaceInfo
); 
 129 uint8_t CDC_Device_SendString(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
, char* const Data
, const uint16_t Length
) 
 131         if ((USB_DeviceState 
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
)) 
 132           return ENDPOINT_READYWAIT_NoError
; 
 134         Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataINEndpointNumber
); 
 135         return Endpoint_Write_Stream_LE(Data
, Length
, NO_STREAM_CALLBACK
); 
 138 uint8_t CDC_Device_SendByte(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
, const uint8_t Data
) 
 140         if ((USB_DeviceState 
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
)) 
 141           return ENDPOINT_READYWAIT_NoError
; 
 143         Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataINEndpointNumber
); 
 145         if (!(Endpoint_IsReadWriteAllowed())) 
 151                 if ((ErrorCode 
= Endpoint_WaitUntilReady()) != ENDPOINT_READYWAIT_NoError
) 
 155         Endpoint_Write_Byte(Data
); 
 156         return ENDPOINT_READYWAIT_NoError
; 
 159 uint8_t CDC_Device_Flush(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
) 
 161         if ((USB_DeviceState 
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
)) 
 162           return ENDPOINT_READYWAIT_NoError
; 
 166         Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataINEndpointNumber
); 
 168         if (!(Endpoint_BytesInEndpoint())) 
 169           return ENDPOINT_READYWAIT_NoError
; 
 171         bool BankFull 
= !(Endpoint_IsReadWriteAllowed()); 
 177                 if ((ErrorCode 
= Endpoint_WaitUntilReady()) != ENDPOINT_READYWAIT_NoError
) 
 183         return ENDPOINT_READYWAIT_NoError
; 
 186 uint16_t CDC_Device_BytesReceived(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
) 
 188         if ((USB_DeviceState 
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
)) 
 191         Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataOUTEndpointNumber
); 
 193         if (Endpoint_IsOUTReceived() && !(Endpoint_BytesInEndpoint())) 
 196         return Endpoint_BytesInEndpoint(); 
 199 uint8_t CDC_Device_ReceiveByte(USB_ClassInfo_CDC_Device_t
* CDCInterfaceInfo
) 
 201         if ((USB_DeviceState 
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
)) 
 204         Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataOUTEndpointNumber
); 
 206         uint8_t DataByte 
= Endpoint_Read_Byte(); 
 208         if (!(Endpoint_BytesInEndpoint())) 
 214 void CDC_Device_SendControlLineStateChange(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
) 
 216         if ((USB_DeviceState 
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
)) 
 219         Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.NotificationEndpointNumber
); 
 221         USB_Request_Header_t Notification 
= (USB_Request_Header_t
) 
 223                         .bmRequestType 
= (REQDIR_DEVICETOHOST 
| REQTYPE_CLASS 
| REQREC_INTERFACE
), 
 224                         .bRequest      
= NOTIF_SerialState
, 
 227                         .wLength       
= sizeof(CDCInterfaceInfo
->State
.ControlLineStates
.DeviceToHost
), 
 230         Endpoint_Write_Stream_LE(&Notification
, sizeof(USB_Request_Header_t
), NO_STREAM_CALLBACK
); 
 231         Endpoint_Write_Stream_LE(&CDCInterfaceInfo
->State
.ControlLineStates
.DeviceToHost
, 
 232                                  sizeof(CDCInterfaceInfo
->State
.ControlLineStates
.DeviceToHost
),