3 Copyright (C) Dean Camera, 2010.
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
10 Copyright 2010 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 "../../HighLevel/USBMode.h"
33 #if defined(USB_CAN_BE_HOST)
35 #define __INCLUDE_FROM_PRINTER_CLASS_HOST_C
36 #define __INCLUDE_FROM_PRINTER_DRIVER
39 uint8_t PRNT_Host_ConfigurePipes(USB_ClassInfo_PRNT_Host_t
* const PRNTInterfaceInfo
, uint16_t ConfigDescriptorSize
,
40 void* DeviceConfigDescriptor
)
42 uint8_t FoundEndpoints
= 0;
44 memset(&PRNTInterfaceInfo
->State
, 0x00, sizeof(PRNTInterfaceInfo
->State
));
46 if (DESCRIPTOR_TYPE(DeviceConfigDescriptor
) != DTYPE_Configuration
)
47 return PRNT_ENUMERROR_InvalidConfigDescriptor
;
49 if (USB_GetNextDescriptorComp(&ConfigDescriptorSize
, &DeviceConfigDescriptor
,
50 DCOMP_PRNT_NextPRNTInterface
) != DESCRIPTOR_SEARCH_COMP_Found
)
52 return PRNT_ENUMERROR_NoPrinterInterfaceFound
;
55 USB_Descriptor_Interface_t
* PrinterInterface
= DESCRIPTOR_PCAST(DeviceConfigDescriptor
, USB_Descriptor_Interface_t
);
57 PRNTInterfaceInfo
->State
.InterfaceNumber
= PrinterInterface
->InterfaceNumber
;
58 PRNTInterfaceInfo
->State
.AlternateSetting
= PrinterInterface
->AlternateSetting
;
60 while (FoundEndpoints
!= (PRNT_FOUND_DATAPIPE_IN
| PRNT_FOUND_DATAPIPE_OUT
))
62 if (USB_GetNextDescriptorComp(&ConfigDescriptorSize
, &DeviceConfigDescriptor
,
63 DCOMP_PRNT_NextPRNTInterfaceEndpoint
) != DESCRIPTOR_SEARCH_COMP_Found
)
65 return PRNT_ENUMERROR_EndpointsNotFound
;
68 USB_Descriptor_Endpoint_t
* EndpointData
= DESCRIPTOR_PCAST(DeviceConfigDescriptor
, USB_Descriptor_Endpoint_t
);
70 if (EndpointData
->EndpointAddress
& ENDPOINT_DESCRIPTOR_DIR_IN
)
72 Pipe_ConfigurePipe(PRNTInterfaceInfo
->Config
.DataINPipeNumber
, EP_TYPE_BULK
, PIPE_TOKEN_IN
,
73 EndpointData
->EndpointAddress
, EndpointData
->EndpointSize
,
74 PRNTInterfaceInfo
->Config
.DataINPipeDoubleBank ? PIPE_BANK_DOUBLE
: PIPE_BANK_SINGLE
);
75 PRNTInterfaceInfo
->State
.DataINPipeSize
= EndpointData
->EndpointSize
;
77 FoundEndpoints
|= PRNT_FOUND_DATAPIPE_IN
;
81 Pipe_ConfigurePipe(PRNTInterfaceInfo
->Config
.DataOUTPipeNumber
, EP_TYPE_BULK
, PIPE_TOKEN_OUT
,
82 EndpointData
->EndpointAddress
, EndpointData
->EndpointSize
,
83 PRNTInterfaceInfo
->Config
.DataOUTPipeDoubleBank ? PIPE_BANK_DOUBLE
: PIPE_BANK_SINGLE
);
84 PRNTInterfaceInfo
->State
.DataOUTPipeSize
= EndpointData
->EndpointSize
;
86 FoundEndpoints
|= PRNT_FOUND_DATAPIPE_OUT
;
90 PRNTInterfaceInfo
->State
.IsActive
= true;
91 return PRNT_ENUMERROR_NoError
;
94 static uint8_t DCOMP_PRNT_NextPRNTInterface(void* CurrentDescriptor
)
96 if (DESCRIPTOR_TYPE(CurrentDescriptor
) == DTYPE_Interface
)
98 if ((DESCRIPTOR_CAST(CurrentDescriptor
, USB_Descriptor_Interface_t
).Class
== PRINTER_CLASS
) &&
99 (DESCRIPTOR_CAST(CurrentDescriptor
, USB_Descriptor_Interface_t
).SubClass
== PRINTER_SUBCLASS
) &&
100 (DESCRIPTOR_CAST(CurrentDescriptor
, USB_Descriptor_Interface_t
).Protocol
== PRINTER_PROTOCOL
))
102 return DESCRIPTOR_SEARCH_Found
;
106 return DESCRIPTOR_SEARCH_NotFound
;
109 static uint8_t DCOMP_PRNT_NextPRNTInterfaceEndpoint(void* CurrentDescriptor
)
111 if (DESCRIPTOR_TYPE(CurrentDescriptor
) == DTYPE_Endpoint
)
113 uint8_t EndpointType
= (DESCRIPTOR_CAST(CurrentDescriptor
,
114 USB_Descriptor_Endpoint_t
).Attributes
& EP_TYPE_MASK
);
116 if (EndpointType
== EP_TYPE_BULK
)
117 return DESCRIPTOR_SEARCH_Found
;
119 else if (DESCRIPTOR_TYPE(CurrentDescriptor
) == DTYPE_Interface
)
121 return DESCRIPTOR_SEARCH_Fail
;
124 return DESCRIPTOR_SEARCH_NotFound
;
127 uint8_t PRNT_Host_SetBidirectionalMode(USB_ClassInfo_PRNT_Host_t
* const PRNTInterfaceInfo
)
129 if (PRNTInterfaceInfo
->State
.AlternateSetting
)
133 USB_ControlRequest
= (USB_Request_Header_t
)
135 .bmRequestType
= (REQDIR_HOSTTODEVICE
| REQTYPE_STANDARD
| REQREC_INTERFACE
),
136 .bRequest
= REQ_SetInterface
,
137 .wValue
= PRNTInterfaceInfo
->State
.AlternateSetting
,
138 .wIndex
= PRNTInterfaceInfo
->State
.InterfaceNumber
,
142 Pipe_SelectPipe(PIPE_CONTROLPIPE
);
144 if ((ErrorCode
= USB_Host_SendControlRequest(NULL
)) != HOST_SENDCONTROL_Successful
)
148 return HOST_SENDCONTROL_Successful
;
151 uint8_t PRNT_Host_GetPortStatus(USB_ClassInfo_PRNT_Host_t
* const PRNTInterfaceInfo
, uint8_t* const PortStatus
)
153 USB_ControlRequest
= (USB_Request_Header_t
)
155 .bmRequestType
= (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
),
156 .bRequest
= REQ_GetPortStatus
,
158 .wIndex
= PRNTInterfaceInfo
->State
.InterfaceNumber
,
159 .wLength
= sizeof(uint8_t),
162 Pipe_SelectPipe(PIPE_CONTROLPIPE
);
164 return USB_Host_SendControlRequest(PortStatus
);
167 uint8_t PRNT_Host_SoftReset(USB_ClassInfo_PRNT_Host_t
* const PRNTInterfaceInfo
)
169 USB_ControlRequest
= (USB_Request_Header_t
)
171 .bmRequestType
= (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
),
172 .bRequest
= REQ_SoftReset
,
174 .wIndex
= PRNTInterfaceInfo
->State
.InterfaceNumber
,
178 Pipe_SelectPipe(PIPE_CONTROLPIPE
);
180 return USB_Host_SendControlRequest(NULL
);
183 uint8_t PRNT_Host_SendData(USB_ClassInfo_PRNT_Host_t
* const PRNTInterfaceInfo
, void* PrinterCommands
, uint16_t CommandSize
)
187 if ((USB_HostState
!= HOST_STATE_Configured
) || !(PRNTInterfaceInfo
->State
.IsActive
))
188 return PIPE_RWSTREAM_DeviceDisconnected
;
190 Pipe_SelectPipe(PRNTInterfaceInfo
->Config
.DataOUTPipeNumber
);
193 if ((ErrorCode
= Pipe_Write_Stream_LE(PrinterCommands
, CommandSize
, NO_STREAM_CALLBACK
)) != PIPE_RWSTREAM_NoError
)
197 while (!(Pipe_IsOUTReady()))
199 if (USB_HostState
== HOST_STATE_Unattached
)
200 return PIPE_RWSTREAM_DeviceDisconnected
;
205 return PIPE_RWSTREAM_NoError
;
208 uint8_t PRNT_Host_GetDeviceID(USB_ClassInfo_PRNT_Host_t
* const PRNTInterfaceInfo
, char* DeviceIDString
, uint16_t BufferSize
)
210 uint8_t ErrorCode
= HOST_SENDCONTROL_Successful
;
211 uint16_t DeviceIDStringLength
= 0;
213 USB_ControlRequest
= (USB_Request_Header_t
)
215 .bmRequestType
= (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
),
216 .bRequest
= REQ_GetDeviceID
,
218 .wIndex
= PRNTInterfaceInfo
->State
.InterfaceNumber
,
219 .wLength
= sizeof(DeviceIDStringLength
),
222 Pipe_SelectPipe(PIPE_CONTROLPIPE
);
224 if ((ErrorCode
= USB_Host_SendControlRequest(&DeviceIDStringLength
)) != HOST_SENDCONTROL_Successful
)
227 if (!(DeviceIDStringLength
))
229 DeviceIDString
[0] = 0x00;
230 return HOST_SENDCONTROL_Successful
;
233 DeviceIDStringLength
= SwapEndian_16(DeviceIDStringLength
);
235 if (DeviceIDStringLength
> BufferSize
)
236 DeviceIDStringLength
= BufferSize
;
238 USB_ControlRequest
.wLength
= DeviceIDStringLength
;
240 if ((ErrorCode
= USB_Host_SendControlRequest(DeviceIDString
)) != HOST_SENDCONTROL_Successful
)
243 memmove(&DeviceIDString
[0], &DeviceIDString
[2], DeviceIDStringLength
- 2);
245 DeviceIDString
[DeviceIDStringLength
- 2] = 0x00;
247 return HOST_SENDCONTROL_Successful
;