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_Event_Stub(void)
45 void CDC_Device_ProcessControlRequest(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
47 if (!(Endpoint_IsSETUPReceived()))
50 if (USB_ControlRequest
.wIndex
!= CDCInterfaceInfo
->Config
.ControlInterfaceNumber
)
53 switch (USB_ControlRequest
.bRequest
)
55 case CDC_REQ_GetLineEncoding
:
56 if (USB_ControlRequest
.bmRequestType
== (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
))
58 Endpoint_ClearSETUP();
59 Endpoint_Write_Control_Stream_LE(&CDCInterfaceInfo
->State
.LineEncoding
, sizeof(CDCInterfaceInfo
->State
.LineEncoding
));
64 case CDC_REQ_SetLineEncoding
:
65 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
67 Endpoint_ClearSETUP();
68 Endpoint_Read_Control_Stream_LE(&CDCInterfaceInfo
->State
.LineEncoding
, sizeof(CDCInterfaceInfo
->State
.LineEncoding
));
71 EVENT_CDC_Device_LineEncodingChanged(CDCInterfaceInfo
);
75 case CDC_REQ_SetControlLineState
:
76 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
78 Endpoint_ClearSETUP();
79 Endpoint_ClearStatusStage();
81 CDCInterfaceInfo
->State
.ControlLineStates
.HostToDevice
= USB_ControlRequest
.wValue
;
83 EVENT_CDC_Device_ControLineStateChanged(CDCInterfaceInfo
);
87 case CDC_REQ_SendBreak
:
88 if (USB_ControlRequest
.bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
))
90 Endpoint_ClearSETUP();
91 Endpoint_ClearStatusStage();
93 EVENT_CDC_Device_BreakSent(CDCInterfaceInfo
, (uint8_t)USB_ControlRequest
.wValue
);
100 bool CDC_Device_ConfigureEndpoints(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
102 memset(&CDCInterfaceInfo
->State
, 0x00, sizeof(CDCInterfaceInfo
->State
));
104 for (uint8_t EndpointNum
= 1; EndpointNum
< ENDPOINT_TOTAL_ENDPOINTS
; EndpointNum
++)
111 if (EndpointNum
== CDCInterfaceInfo
->Config
.DataINEndpointNumber
)
113 Size
= CDCInterfaceInfo
->Config
.DataINEndpointSize
;
114 Direction
= ENDPOINT_DIR_IN
;
116 DoubleBanked
= CDCInterfaceInfo
->Config
.DataINEndpointDoubleBank
;
118 else if (EndpointNum
== CDCInterfaceInfo
->Config
.DataOUTEndpointNumber
)
120 Size
= CDCInterfaceInfo
->Config
.DataOUTEndpointSize
;
121 Direction
= ENDPOINT_DIR_OUT
;
123 DoubleBanked
= CDCInterfaceInfo
->Config
.DataOUTEndpointDoubleBank
;
125 else if (EndpointNum
== CDCInterfaceInfo
->Config
.NotificationEndpointNumber
)
127 Size
= CDCInterfaceInfo
->Config
.NotificationEndpointSize
;
128 Direction
= ENDPOINT_DIR_IN
;
129 Type
= EP_TYPE_INTERRUPT
;
130 DoubleBanked
= CDCInterfaceInfo
->Config
.NotificationEndpointDoubleBank
;
137 if (!(Endpoint_ConfigureEndpoint(EndpointNum
, Type
, Direction
, Size
,
138 DoubleBanked ? ENDPOINT_BANK_DOUBLE
: ENDPOINT_BANK_SINGLE
)))
147 void CDC_Device_USBTask(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
149 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
152 #if !defined(NO_CLASS_DRIVER_AUTOFLUSH)
153 CDC_Device_Flush(CDCInterfaceInfo
);
157 uint8_t CDC_Device_SendString(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
,
158 const char* const String
)
160 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
161 return ENDPOINT_RWSTREAM_DeviceDisconnected
;
163 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataINEndpointNumber
);
164 return Endpoint_Write_Stream_LE(String
, strlen(String
), NULL
);
167 uint8_t CDC_Device_SendData(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
,
168 const char* const Buffer
,
169 const uint16_t Length
)
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(Buffer
, Length
, NULL
);
178 uint8_t CDC_Device_SendByte(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
,
181 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
182 return ENDPOINT_RWSTREAM_DeviceDisconnected
;
184 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataINEndpointNumber
);
186 if (!(Endpoint_IsReadWriteAllowed()))
192 if ((ErrorCode
= Endpoint_WaitUntilReady()) != ENDPOINT_READYWAIT_NoError
)
196 Endpoint_Write_Byte(Data
);
197 return ENDPOINT_READYWAIT_NoError
;
200 uint8_t CDC_Device_Flush(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
202 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
203 return ENDPOINT_RWSTREAM_DeviceDisconnected
;
207 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataINEndpointNumber
);
209 if (!(Endpoint_BytesInEndpoint()))
210 return ENDPOINT_READYWAIT_NoError
;
212 bool BankFull
= !(Endpoint_IsReadWriteAllowed());
218 if ((ErrorCode
= Endpoint_WaitUntilReady()) != ENDPOINT_READYWAIT_NoError
)
224 return ENDPOINT_READYWAIT_NoError
;
227 uint16_t CDC_Device_BytesReceived(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
229 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
232 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataOUTEndpointNumber
);
234 if (Endpoint_IsOUTReceived())
236 if (!(Endpoint_BytesInEndpoint()))
243 return Endpoint_BytesInEndpoint();
252 int16_t CDC_Device_ReceiveByte(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
254 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
257 int16_t ReceivedByte
= -1;
259 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.DataOUTEndpointNumber
);
261 if (Endpoint_IsOUTReceived())
263 if (Endpoint_BytesInEndpoint())
264 ReceivedByte
= Endpoint_Read_Byte();
266 if (!(Endpoint_BytesInEndpoint()))
273 void CDC_Device_SendControlLineStateChange(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
)
275 if ((USB_DeviceState
!= DEVICE_STATE_Configured
) || !(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
))
278 Endpoint_SelectEndpoint(CDCInterfaceInfo
->Config
.NotificationEndpointNumber
);
280 USB_Request_Header_t Notification
= (USB_Request_Header_t
)
282 .bmRequestType
= (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
),
283 .bRequest
= CDC_NOTIF_SerialState
,
286 .wLength
= sizeof(CDCInterfaceInfo
->State
.ControlLineStates
.DeviceToHost
),
289 Endpoint_Write_Stream_LE(&Notification
, sizeof(USB_Request_Header_t
), NULL
);
290 Endpoint_Write_Stream_LE(&CDCInterfaceInfo
->State
.ControlLineStates
.DeviceToHost
,
291 sizeof(CDCInterfaceInfo
->State
.ControlLineStates
.DeviceToHost
),
296 void CDC_Device_CreateStream(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
,
299 *Stream
= (FILE)FDEV_SETUP_STREAM(CDC_Device_putchar
, CDC_Device_getchar
, _FDEV_SETUP_RW
);
300 fdev_set_udata(Stream
, CDCInterfaceInfo
);
303 void CDC_Device_CreateBlockingStream(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
,
306 *Stream
= (FILE)FDEV_SETUP_STREAM(CDC_Device_putchar
, CDC_Device_getchar_Blocking
, _FDEV_SETUP_RW
);
307 fdev_set_udata(Stream
, CDCInterfaceInfo
);
310 static int CDC_Device_putchar(char c
,
313 return CDC_Device_SendByte((USB_ClassInfo_CDC_Device_t
*)fdev_get_udata(Stream
), c
) ? _FDEV_ERR
: 0;
316 static int CDC_Device_getchar(FILE* Stream
)
318 int16_t ReceivedByte
= CDC_Device_ReceiveByte((USB_ClassInfo_CDC_Device_t
*)fdev_get_udata(Stream
));
320 if (ReceivedByte
< 0)
326 static int CDC_Device_getchar_Blocking(FILE* Stream
)
328 int16_t ReceivedByte
;
330 while ((ReceivedByte
= CDC_Device_ReceiveByte((USB_ClassInfo_CDC_Device_t
*)fdev_get_udata(Stream
))) < 0)
332 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
335 CDC_Device_USBTask((USB_ClassInfo_CDC_Device_t
*)fdev_get_udata(Stream
));