3 Copyright (C) Dean Camera, 2011.
5 dean [at] fourwalledcubicle [dot] com
10 Copyright 2011 Dean Camera (dean [at] fourwalledcubicle [dot] com)
12 Permission to use, copy, modify, distribute, and sell this
13 software and its documentation for any purpose is hereby granted
14 without fee, provided that the above copyright notice appear in
15 all 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 #define __INCLUDE_FROM_USB_DRIVER
32 #include "../../Core/USBMode.h"
34 #if defined(USB_CAN_BE_DEVICE)
36 #define __INCLUDE_FROM_CDC_DRIVER
37 #define __INCLUDE_FROM_CDC_DEVICE_C
38 #include "CDCClassDevice.h"
40 void CDC_Device_ProcessControlRequest(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
42 if (!(Endpoint_IsSETUPReceived()))
45 if (USB_ControlRequest
.wIndex
!= CDCInterfaceInfo
->Config
.ControlInterfaceNumber
)
48 switch (USB_ControlRequest
.bRequest
)
50 case CDC_REQ_GetLineEncoding
:
51 if (USB_ControlRequest
.bmRequestType
== (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
))
53 Endpoint_ClearSETUP();
55 while (!(Endpoint_IsINReady()));
57 Endpoint_Write_32_LE(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
);
58 Endpoint_Write_8(CDCInterfaceInfo
->State
.LineEncoding
.CharFormat
);
59 Endpoint_Write_8(CDCInterfaceInfo
->State
.LineEncoding
.ParityType
);
60 Endpoint_Write_8(CDCInterfaceInfo
->State
.LineEncoding
.DataBits
);
63 Endpoint_ClearStatusStage();
67 case CDC_REQ_SetLineEncoding
:
68 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
70 Endpoint_ClearSETUP();
72 while (!(Endpoint_IsOUTReceived()));
74 CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
= Endpoint_Read_32_LE();
75 CDCInterfaceInfo
->State
.LineEncoding
.CharFormat
= Endpoint_Read_8();
76 CDCInterfaceInfo
->State
.LineEncoding
.ParityType
= Endpoint_Read_8();
77 CDCInterfaceInfo
->State
.LineEncoding
.DataBits
= Endpoint_Read_8();
80 Endpoint_ClearStatusStage();
82 EVENT_CDC_Device_LineEncodingChanged(CDCInterfaceInfo
);
86 case CDC_REQ_SetControlLineState
:
87 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
89 Endpoint_ClearSETUP();
90 Endpoint_ClearStatusStage();
92 CDCInterfaceInfo
->State
.ControlLineStates
.HostToDevice
= USB_ControlRequest
.wValue
;
94 EVENT_CDC_Device_ControLineStateChanged(CDCInterfaceInfo
);
98 case CDC_REQ_SendBreak
:
99 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
101 Endpoint_ClearSETUP();
102 Endpoint_ClearStatusStage();
104 EVENT_CDC_Device_BreakSent(CDCInterfaceInfo
, (uint8_t)USB_ControlRequest
.wValue
);
111 bool CDC_Device_ConfigureEndpoints(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
113 memset(&CDCInterfaceInfo
->State
, 0x00, sizeof(CDCInterfaceInfo
->State
));
115 for (uint8_t EndpointNum
= 1; EndpointNum
< ENDPOINT_TOTAL_ENDPOINTS
; EndpointNum
++)
122 if (EndpointNum
== CDCInterfaceInfo
->Config
.DataINEndpointNumber
)
124 Size
= CDCInterfaceInfo
->Config
.DataINEndpointSize
;
125 Direction
= ENDPOINT_DIR_IN
;
127 DoubleBanked
= CDCInterfaceInfo
->Config
.DataINEndpointDoubleBank
;
129 else if (EndpointNum
== CDCInterfaceInfo
->Config
.DataOUTEndpointNumber
)
131 Size
= CDCInterfaceInfo
->Config
.DataOUTEndpointSize
;
132 Direction
= ENDPOINT_DIR_OUT
;
134 DoubleBanked
= CDCInterfaceInfo
->Config
.DataOUTEndpointDoubleBank
;
136 else if (EndpointNum
== CDCInterfaceInfo
->Config
.NotificationEndpointNumber
)
138 Size
= CDCInterfaceInfo
->Config
.NotificationEndpointSize
;
139 Direction
= ENDPOINT_DIR_IN
;
140 Type
= EP_TYPE_INTERRUPT
;
141 DoubleBanked
= CDCInterfaceInfo
->Config
.NotificationEndpointDoubleBank
;
148 if (!(Endpoint_ConfigureEndpoint(EndpointNum
, Type
, Direction
, Size
,
149 DoubleBanked ? ENDPOINT_BANK_DOUBLE
: ENDPOINT_BANK_SINGLE
)))
158 void CDC_Device_USBTask(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
160 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
163 #if !defined(NO_CLASS_DRIVER_AUTOFLUSH)
164 CDC_Device_Flush(CDCInterfaceInfo
);
168 uint8_t CDC_Device_SendString(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
,
169 const char* const String
)
171 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
172 return ENDPOINT_RWSTREAM_DeviceDisconnected
;
174 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataINEndpointNumber
);
175 return Endpoint_Write_Stream_LE(String
, strlen(String
), NULL
);
178 uint8_t CDC_Device_SendData(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
,
179 const char* const Buffer
,
180 const uint16_t Length
)
182 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
183 return ENDPOINT_RWSTREAM_DeviceDisconnected
;
185 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataINEndpointNumber
);
186 return Endpoint_Write_Stream_LE(Buffer
, Length
, NULL
);
189 uint8_t CDC_Device_SendByte(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
,
192 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
193 return ENDPOINT_RWSTREAM_DeviceDisconnected
;
195 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataINEndpointNumber
);
197 if (!(Endpoint_IsReadWriteAllowed()))
203 if ((ErrorCode
= Endpoint_WaitUntilReady()) != ENDPOINT_READYWAIT_NoError
)
207 Endpoint_Write_8(Data
);
208 return ENDPOINT_READYWAIT_NoError
;
211 uint8_t CDC_Device_Flush(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
213 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
214 return ENDPOINT_RWSTREAM_DeviceDisconnected
;
218 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataINEndpointNumber
);
220 if (!(Endpoint_BytesInEndpoint()))
221 return ENDPOINT_READYWAIT_NoError
;
223 bool BankFull
= !(Endpoint_IsReadWriteAllowed());
229 if ((ErrorCode
= Endpoint_WaitUntilReady()) != ENDPOINT_READYWAIT_NoError
)
235 return ENDPOINT_READYWAIT_NoError
;
238 uint16_t CDC_Device_BytesReceived(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
240 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
243 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataOUTEndpointNumber
);
245 if (Endpoint_IsOUTReceived())
247 if (!(Endpoint_BytesInEndpoint()))
254 return Endpoint_BytesInEndpoint();
263 int16_t CDC_Device_ReceiveByte(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
265 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
268 int16_t ReceivedByte
= -1;
270 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataOUTEndpointNumber
);
272 if (Endpoint_IsOUTReceived())
274 if (Endpoint_BytesInEndpoint())
275 ReceivedByte
= Endpoint_Read_8();
277 if (!(Endpoint_BytesInEndpoint()))
284 void CDC_Device_SendControlLineStateChange(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
286 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
289 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.NotificationEndpointNumber
);
291 USB_Request_Header_t Notification
= (USB_Request_Header_t
)
293 .bmRequestType
= (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
),
294 .bRequest
= CDC_NOTIF_SerialState
,
295 .wValue
= CPU_TO_LE16(0),
296 .wIndex
= CPU_TO_LE16(0),
297 .wLength
= CPU_TO_LE16(sizeof(CDCInterfaceInfo
->State
.ControlLineStates
.DeviceToHost
)),
300 Endpoint_Write_Stream_LE(&Notification
, sizeof(USB_Request_Header_t
), NULL
);
301 Endpoint_Write_Stream_LE(&CDCInterfaceInfo
->State
.ControlLineStates
.DeviceToHost
,
302 sizeof(CDCInterfaceInfo
->State
.ControlLineStates
.DeviceToHost
),
307 #if defined(FDEV_SETUP_STREAM)
308 void CDC_Device_CreateStream(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
,
311 *Stream
= (FILE)FDEV_SETUP_STREAM(CDC_Device_putchar
, CDC_Device_getchar
, _FDEV_SETUP_RW
);
312 fdev_set_udata(Stream
, CDCInterfaceInfo
);
315 void CDC_Device_CreateBlockingStream(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
,
318 *Stream
= (FILE)FDEV_SETUP_STREAM(CDC_Device_putchar
, CDC_Device_getchar_Blocking
, _FDEV_SETUP_RW
);
319 fdev_set_udata(Stream
, CDCInterfaceInfo
);
322 static int CDC_Device_putchar(char c
,
325 return CDC_Device_SendByte((USB_ClassInfo_CDC_Device_t
*)fdev_get_udata(Stream
), c
) ? _FDEV_ERR
: 0;
328 static int CDC_Device_getchar(FILE* Stream
)
330 int16_t ReceivedByte
= CDC_Device_ReceiveByte((USB_ClassInfo_CDC_Device_t
*)fdev_get_udata(Stream
));
332 if (ReceivedByte
< 0)
338 static int CDC_Device_getchar_Blocking(FILE* Stream
)
340 int16_t ReceivedByte
;
342 while ((ReceivedByte
= CDC_Device_ReceiveByte((USB_ClassInfo_CDC_Device_t
*)fdev_get_udata(Stream
))) < 0)
344 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
347 CDC_Device_USBTask((USB_ClassInfo_CDC_Device_t
*)fdev_get_udata(Stream
));
355 void CDC_Device_Event_Stub(void)