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
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();
54 Endpoint_Write_32_LE(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
);
55 Endpoint_Write_8(CDCInterfaceInfo
->State
.LineEncoding
.CharFormat
);
56 Endpoint_Write_8(CDCInterfaceInfo
->State
.LineEncoding
.ParityType
);
57 Endpoint_Write_8(CDCInterfaceInfo
->State
.LineEncoding
.DataBits
);
59 Endpoint_ClearStatusStage();
63 case CDC_REQ_SetLineEncoding
:
64 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
66 Endpoint_ClearSETUP();
67 CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
= Endpoint_Read_32_LE();
68 CDCInterfaceInfo
->State
.LineEncoding
.CharFormat
= Endpoint_Read_8();
69 CDCInterfaceInfo
->State
.LineEncoding
.ParityType
= Endpoint_Read_8();
70 CDCInterfaceInfo
->State
.LineEncoding
.DataBits
= Endpoint_Read_8();
72 Endpoint_ClearStatusStage();
74 EVENT_CDC_Device_LineEncodingChanged(CDCInterfaceInfo
);
78 case CDC_REQ_SetControlLineState
:
79 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
81 Endpoint_ClearSETUP();
82 Endpoint_ClearStatusStage();
84 CDCInterfaceInfo
->State
.ControlLineStates
.HostToDevice
= USB_ControlRequest
.wValue
;
86 EVENT_CDC_Device_ControLineStateChanged(CDCInterfaceInfo
);
90 case CDC_REQ_SendBreak
:
91 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
93 Endpoint_ClearSETUP();
94 Endpoint_ClearStatusStage();
96 EVENT_CDC_Device_BreakSent(CDCInterfaceInfo
, (uint8_t)USB_ControlRequest
.wValue
);
103 bool CDC_Device_ConfigureEndpoints(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
105 memset(&CDCInterfaceInfo
->State
, 0x00, sizeof(CDCInterfaceInfo
->State
));
107 for (uint8_t EndpointNum
= 1; EndpointNum
< ENDPOINT_TOTAL_ENDPOINTS
; EndpointNum
++)
114 if (EndpointNum
== CDCInterfaceInfo
->Config
.DataINEndpointNumber
)
116 Size
= CDCInterfaceInfo
->Config
.DataINEndpointSize
;
117 Direction
= ENDPOINT_DIR_IN
;
119 DoubleBanked
= CDCInterfaceInfo
->Config
.DataINEndpointDoubleBank
;
121 else if (EndpointNum
== CDCInterfaceInfo
->Config
.DataOUTEndpointNumber
)
123 Size
= CDCInterfaceInfo
->Config
.DataOUTEndpointSize
;
124 Direction
= ENDPOINT_DIR_OUT
;
126 DoubleBanked
= CDCInterfaceInfo
->Config
.DataOUTEndpointDoubleBank
;
128 else if (EndpointNum
== CDCInterfaceInfo
->Config
.NotificationEndpointNumber
)
130 Size
= CDCInterfaceInfo
->Config
.NotificationEndpointSize
;
131 Direction
= ENDPOINT_DIR_IN
;
132 Type
= EP_TYPE_INTERRUPT
;
133 DoubleBanked
= CDCInterfaceInfo
->Config
.NotificationEndpointDoubleBank
;
140 if (!(Endpoint_ConfigureEndpoint(EndpointNum
, Type
, Direction
, Size
,
141 DoubleBanked ? ENDPOINT_BANK_DOUBLE
: ENDPOINT_BANK_SINGLE
)))
150 void CDC_Device_USBTask(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
152 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
155 #if !defined(NO_CLASS_DRIVER_AUTOFLUSH)
156 CDC_Device_Flush(CDCInterfaceInfo
);
160 uint8_t CDC_Device_SendString(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
,
161 const char* const String
)
163 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
164 return ENDPOINT_RWSTREAM_DeviceDisconnected
;
166 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataINEndpointNumber
);
167 return Endpoint_Write_Stream_LE(String
, strlen(String
), NULL
);
170 uint8_t CDC_Device_SendData(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
,
171 const char* const Buffer
,
172 const uint16_t Length
)
174 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
175 return ENDPOINT_RWSTREAM_DeviceDisconnected
;
177 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataINEndpointNumber
);
178 return Endpoint_Write_Stream_LE(Buffer
, Length
, NULL
);
181 uint8_t CDC_Device_SendByte(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
,
184 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
185 return ENDPOINT_RWSTREAM_DeviceDisconnected
;
187 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataINEndpointNumber
);
189 if (!(Endpoint_IsReadWriteAllowed()))
195 if ((ErrorCode
= Endpoint_WaitUntilReady()) != ENDPOINT_READYWAIT_NoError
)
199 Endpoint_Write_8(Data
);
200 return ENDPOINT_READYWAIT_NoError
;
203 uint8_t CDC_Device_Flush(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
205 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
206 return ENDPOINT_RWSTREAM_DeviceDisconnected
;
210 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataINEndpointNumber
);
212 if (!(Endpoint_BytesInEndpoint()))
213 return ENDPOINT_READYWAIT_NoError
;
215 bool BankFull
= !(Endpoint_IsReadWriteAllowed());
221 if ((ErrorCode
= Endpoint_WaitUntilReady()) != ENDPOINT_READYWAIT_NoError
)
227 return ENDPOINT_READYWAIT_NoError
;
230 uint16_t CDC_Device_BytesReceived(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
232 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
235 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataOUTEndpointNumber
);
237 if (Endpoint_IsOUTReceived())
239 if (!(Endpoint_BytesInEndpoint()))
246 return Endpoint_BytesInEndpoint();
255 int16_t CDC_Device_ReceiveByte(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
257 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
260 int16_t ReceivedByte
= -1;
262 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataOUTEndpointNumber
);
264 if (Endpoint_IsOUTReceived())
266 if (Endpoint_BytesInEndpoint())
267 ReceivedByte
= Endpoint_Read_8();
269 if (!(Endpoint_BytesInEndpoint()))
276 void CDC_Device_SendControlLineStateChange(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
278 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
281 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.NotificationEndpointNumber
);
283 USB_Request_Header_t Notification
= (USB_Request_Header_t
)
285 .bmRequestType
= (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
),
286 .bRequest
= CDC_NOTIF_SerialState
,
287 .wValue
= CPU_TO_LE16(0),
288 .wIndex
= CPU_TO_LE16(0),
289 .wLength
= CPU_TO_LE16(sizeof(CDCInterfaceInfo
->State
.ControlLineStates
.DeviceToHost
)),
292 Endpoint_Write_Stream_LE(&Notification
, sizeof(USB_Request_Header_t
), NULL
);
293 Endpoint_Write_Stream_LE(&CDCInterfaceInfo
->State
.ControlLineStates
.DeviceToHost
,
294 sizeof(CDCInterfaceInfo
->State
.ControlLineStates
.DeviceToHost
),
299 #if defined(FDEV_SETUP_STREAM)
300 void CDC_Device_CreateStream(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
,
303 *Stream
= (FILE)FDEV_SETUP_STREAM(CDC_Device_putchar
, CDC_Device_getchar
, _FDEV_SETUP_RW
);
304 fdev_set_udata(Stream
, CDCInterfaceInfo
);
307 void CDC_Device_CreateBlockingStream(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
,
310 *Stream
= (FILE)FDEV_SETUP_STREAM(CDC_Device_putchar
, CDC_Device_getchar_Blocking
, _FDEV_SETUP_RW
);
311 fdev_set_udata(Stream
, CDCInterfaceInfo
);
314 static int CDC_Device_putchar(char c
,
317 return CDC_Device_SendByte((USB_ClassInfo_CDC_Device_t
*)fdev_get_udata(Stream
), c
) ? _FDEV_ERR
: 0;
320 static int CDC_Device_getchar(FILE* Stream
)
322 int16_t ReceivedByte
= CDC_Device_ReceiveByte((USB_ClassInfo_CDC_Device_t
*)fdev_get_udata(Stream
));
324 if (ReceivedByte
< 0)
330 static int CDC_Device_getchar_Blocking(FILE* Stream
)
332 int16_t ReceivedByte
;
334 while ((ReceivedByte
= CDC_Device_ReceiveByte((USB_ClassInfo_CDC_Device_t
*)fdev_get_udata(Stream
))) < 0)
336 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
339 CDC_Device_USBTask((USB_ClassInfo_CDC_Device_t
*)fdev_get_udata(Stream
));
347 void CDC_Device_Event_Stub(void)