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
33 * Printer Device commands, to send/recieve data to and from an attached USB
34 * printer, and to send and receive Printer Class control requests.
37 #include "PrinterCommands.h"
39 /** Sends the given data directly to the printer via the data endpoints, for the sending of print commands in printer
40 * languages accepted by the attached printer (e.g. PCL).
42 * \param[in] PrinterCommands Pointer to a structure containing the commands and length of the data to send
44 * \return A value from the Pipe_Stream_RW_ErrorCodes_t enum
46 uint8_t Printer_SendData(Printer_Data_t
* PrinterCommands
)
50 Pipe_SelectPipe(PRINTER_DATA_OUT_PIPE
);
53 if ((ErrorCode
= Pipe_Write_Stream_LE(PrinterCommands
->Data
, PrinterCommands
->Length
)) != PIPE_RWSTREAM_NoError
)
57 while (!(Pipe_IsOUTReady()))
59 if (USB_HostState
== HOST_STATE_Unattached
)
60 return PIPE_RWSTREAM_DeviceDisconnected
;
65 return PIPE_RWSTREAM_NoError
;
68 /** Issues a Printer class Get Device ID command to the attached device, to retrieve the device ID string (which indicates
69 * the accepted printer languages, the printer's model and other pertinent information).
71 * \param[out] DeviceIDString Pointer to the destination where the returned string should be stored
72 * \param[in] BufferSize Size in bytes of the allocated buffer for the returned Device ID string
74 * \return A value from the USB_Host_SendControlErrorCodes_t enum
76 uint8_t Printer_GetDeviceID(char* DeviceIDString
, uint16_t BufferSize
)
78 uint8_t ErrorCode
= HOST_SENDCONTROL_Successful
;
79 uint16_t DeviceIDStringLength
;
81 USB_ControlRequest
= (USB_Request_Header_t
)
83 bmRequestType
: (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
),
84 bRequest
: GET_DEVICE_ID
,
87 wLength
: sizeof(DeviceIDStringLength
),
90 Pipe_SelectPipe(PIPE_CONTROLPIPE
);
92 if ((ErrorCode
= USB_Host_SendControlRequest(&DeviceIDStringLength
)) != HOST_SENDCONTROL_Successful
)
95 DeviceIDStringLength
= SwapEndian_16(DeviceIDStringLength
);
97 if (DeviceIDStringLength
> BufferSize
)
98 DeviceIDStringLength
= BufferSize
;
100 USB_ControlRequest
.wLength
= DeviceIDStringLength
;
102 if ((ErrorCode
= USB_Host_SendControlRequest(DeviceIDString
)) != HOST_SENDCONTROL_Successful
)
105 /* Move string back two characters to remove the string length value from the start of the array */
106 memmove(&DeviceIDString
[0], &DeviceIDString
[2], DeviceIDStringLength
- 2);
108 DeviceIDString
[DeviceIDStringLength
- 2] = 0x00;
110 return HOST_SENDCONTROL_Successful
;
113 /** Issues a Printer class Get Port Status command to the attached device, to retrieve the current status flags of the
116 * \param[out] PortStatus Pointer to the destination where the printer's status flag values should be stored
118 * \return A value from the USB_Host_SendControlErrorCodes_t enum
120 uint8_t Printer_GetPortStatus(uint8_t* PortStatus
)
122 USB_ControlRequest
= (USB_Request_Header_t
)
124 bmRequestType
: (REQDIR_DEVICETOHOST
| REQTYPE_CLASS
| REQREC_INTERFACE
),
125 bRequest
: GET_PORT_STATUS
,
128 wLength
: sizeof(uint8_t),
131 Pipe_SelectPipe(PIPE_CONTROLPIPE
);
133 return USB_Host_SendControlRequest(PortStatus
);
136 /** Issues a Printer class Soft Reset command to the attached device, to reset the printer ready for new input without
137 * physically cycling the printer's power.
139 * \return A value from the USB_Host_SendControlErrorCodes_t enum
141 uint8_t Printer_SoftReset(void)
143 USB_ControlRequest
= (USB_Request_Header_t
)
145 bmRequestType
: (REQDIR_HOSTTODEVICE
| REQTYPE_CLASS
| REQREC_INTERFACE
),
146 bRequest
: SOFT_RESET
,
152 Pipe_SelectPipe(PIPE_CONTROLPIPE
);
154 return USB_Host_SendControlRequest(NULL
);