2012-10-26 22:06:47 -04:00
|
|
|
/*
|
2012-10-28 11:18:29 -04:00
|
|
|
* Canon SELPHY series print assister -- libusb-1.0 version
|
2012-10-26 22:06:47 -04:00
|
|
|
*
|
|
|
|
* (c) 2007-2012 Solomon Peachy <pizza@shaftnet.org>
|
|
|
|
*
|
|
|
|
* The latest version of this program can be found at:
|
|
|
|
*
|
2012-10-27 10:27:31 -04:00
|
|
|
* http://git.shaftnet.org/git/gitweb.cgi?p=selphy_print.git
|
2012-10-26 22:06:47 -04:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 3 of the License, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* [http://www.gnu.org/licenses/gpl-3.0.html]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2012-10-26 23:21:33 -04:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2012-10-26 22:06:47 -04:00
|
|
|
#include <libusb-1.0/libusb.h>
|
|
|
|
|
2012-10-26 23:21:33 -04:00
|
|
|
#include "es_print_common.h"
|
2012-10-26 22:06:47 -04:00
|
|
|
|
2012-10-27 10:38:36 -04:00
|
|
|
#define dump_data dump_data_libusb
|
|
|
|
|
2012-10-26 22:06:47 -04:00
|
|
|
/* USB Identifiers */
|
2012-10-27 23:58:39 -04:00
|
|
|
#define USB_VID_CANON 0x04a9
|
|
|
|
#define USB_PID_CANON_ES1 0x3141
|
|
|
|
#define USB_PID_CANON_ES2 0x3185
|
|
|
|
#define USB_PID_CANON_ES20 20 // XXX
|
|
|
|
#define USB_PID_CANON_ES3 3 // XXX
|
|
|
|
#define USB_PID_CANON_ES30 0x31B0
|
|
|
|
#define USB_PID_CANON_ES40 0x31EE
|
2012-10-28 00:07:22 -04:00
|
|
|
#define USB_PID_CANON_CP10 0x304A
|
2012-10-27 23:58:39 -04:00
|
|
|
#define USB_PID_CANON_CP100 0x3063
|
|
|
|
#define USB_PID_CANON_CP200 200 // XXX
|
|
|
|
#define USB_PID_CANON_CP220 0x30BD
|
|
|
|
#define USB_PID_CANON_CP300 0x307D
|
|
|
|
#define USB_PID_CANON_CP330 0x30BE
|
|
|
|
#define USB_PID_CANON_CP400 0x30F6
|
|
|
|
#define USB_PID_CANON_CP500 500 // XXX
|
|
|
|
#define USB_PID_CANON_CP510 510 // XXX
|
|
|
|
#define USB_PID_CANON_CP520 520 // XXX
|
|
|
|
#define USB_PID_CANON_CP530 530 // XXX
|
2012-10-28 00:07:22 -04:00
|
|
|
#define USB_PID_CANON_CP600 0x310B
|
2012-10-27 23:58:39 -04:00
|
|
|
#define USB_PID_CANON_CP710 710 // XXX
|
|
|
|
#define USB_PID_CANON_CP720 720 // XXX
|
|
|
|
#define USB_PID_CANON_CP730 730 // XXX
|
2012-10-28 17:32:24 -04:00
|
|
|
#define USB_PID_CANON_CP740 0x3171
|
2012-10-27 23:58:39 -04:00
|
|
|
#define USB_PID_CANON_CP750 750 // XXX
|
2012-10-29 13:20:51 -04:00
|
|
|
#define USB_PID_CANON_CP760 0x31AB
|
2012-10-27 23:58:39 -04:00
|
|
|
#define USB_PID_CANON_CP770 770 // XXX
|
|
|
|
#define USB_PID_CANON_CP780 780 // XXX
|
|
|
|
#define USB_PID_CANON_CP790 790 // XXX
|
|
|
|
#define USB_PID_CANON_CP800 0x3214
|
2012-10-29 22:51:12 -04:00
|
|
|
#define USB_PID_CANON_CP810 0x3256 // XXX -- as of yet unknown file format
|
2012-10-30 22:52:26 -04:00
|
|
|
#define USB_PID_CANON_CP900 0x3255 // XXX -- as of yet unknown file format
|
2012-10-26 23:21:33 -04:00
|
|
|
|
2012-10-27 08:32:37 -04:00
|
|
|
#define ENDPOINT_UP 0x81
|
|
|
|
#define ENDPOINT_DOWN 0x02
|
2012-10-26 23:21:33 -04:00
|
|
|
|
2012-10-27 10:38:36 -04:00
|
|
|
static int dump_data_libusb(int remaining, int present, int data_fd,
|
|
|
|
struct libusb_device_handle *dev,
|
|
|
|
uint8_t *buf, uint16_t buflen) {
|
2012-10-26 23:21:33 -04:00
|
|
|
int cnt;
|
|
|
|
int i;
|
|
|
|
int wrote;
|
|
|
|
int num;
|
|
|
|
|
2012-10-27 09:56:47 -04:00
|
|
|
while (remaining > 0) {
|
2012-10-26 23:21:33 -04:00
|
|
|
cnt = read(data_fd, buf + present, (remaining < (buflen-present)) ? remaining : (buflen-present));
|
|
|
|
|
|
|
|
if (cnt < 0)
|
|
|
|
return -1;
|
|
|
|
|
2012-10-27 10:21:47 -04:00
|
|
|
if (present) {
|
|
|
|
cnt += present;
|
|
|
|
present = 0;
|
|
|
|
}
|
|
|
|
|
2012-10-26 23:21:33 -04:00
|
|
|
i = libusb_bulk_transfer(dev, ENDPOINT_DOWN,
|
|
|
|
buf,
|
|
|
|
cnt,
|
|
|
|
&num,
|
|
|
|
2000);
|
|
|
|
if (i < 0) {
|
|
|
|
fprintf(stderr, "libusb error(%d)\n", i);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (num != cnt) {
|
|
|
|
/* Realign buffer.. */
|
|
|
|
present = cnt - num;
|
|
|
|
memmove(buf, buf + num, present);
|
|
|
|
}
|
|
|
|
wrote += num;
|
|
|
|
remaining -= num;
|
|
|
|
}
|
|
|
|
|
2012-10-27 09:56:47 -04:00
|
|
|
fprintf(stderr, "Wrote %d bytes\n", wrote);
|
2012-10-26 23:21:33 -04:00
|
|
|
|
|
|
|
return wrote;
|
|
|
|
}
|
2012-10-26 22:06:47 -04:00
|
|
|
|
|
|
|
int main (int argc, char **argv)
|
|
|
|
{
|
|
|
|
struct libusb_context *ctx;
|
|
|
|
struct libusb_device **list;
|
|
|
|
struct libusb_device_handle *dev;
|
|
|
|
|
|
|
|
int printer_type = P_END;
|
|
|
|
|
2012-10-27 09:56:47 -04:00
|
|
|
int iface = 0;
|
|
|
|
|
2012-10-26 22:06:47 -04:00
|
|
|
int num, i;
|
|
|
|
int ret = 0;
|
|
|
|
int claimed;
|
|
|
|
|
2012-10-28 12:19:17 -04:00
|
|
|
uint8_t rdbuf[READBACK_LEN], rdbuf2[READBACK_LEN];
|
2012-10-27 08:32:37 -04:00
|
|
|
int last_state = -1, state = S_IDLE;
|
2012-10-26 23:21:33 -04:00
|
|
|
|
|
|
|
int plane_len = 0;
|
|
|
|
|
|
|
|
int bw_mode = 0;
|
|
|
|
int16_t paper_code_offset = -1;
|
|
|
|
int16_t paper_code = -1;
|
|
|
|
|
|
|
|
uint8_t buffer[BUF_LEN];
|
|
|
|
|
|
|
|
int data_fd = fileno(stdin);
|
|
|
|
|
|
|
|
/* Static initialization */
|
|
|
|
setup_paper_codes();
|
|
|
|
|
2012-10-26 22:06:47 -04:00
|
|
|
/* Cmdline help */
|
|
|
|
if (argc < 2) {
|
2012-10-28 09:45:39 -04:00
|
|
|
fprintf(stderr, "SELPHY Print Assist version %s\n\nUsage:\n\t%s [ infile | - ]\n",
|
2012-10-26 22:06:47 -04:00
|
|
|
VERSION,
|
|
|
|
argv[0]);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2012-10-26 23:21:33 -04:00
|
|
|
/* Open Input File */
|
2012-10-26 23:35:48 -04:00
|
|
|
if (strcmp("-", argv[1])) {
|
2012-10-26 23:21:33 -04:00
|
|
|
data_fd = open(argv[1], O_RDONLY);
|
|
|
|
if (data_fd < 0) {
|
|
|
|
perror("Can't open input file");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Figure out printer this file is intended for */
|
|
|
|
read(data_fd, buffer, MAX_HEADER);
|
|
|
|
|
2012-10-27 10:46:56 -04:00
|
|
|
printer_type = parse_printjob(buffer, &bw_mode, &plane_len);
|
|
|
|
if (printer_type < 0) {
|
2012-10-26 23:21:33 -04:00
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
2012-10-28 12:19:17 -04:00
|
|
|
fprintf(stderr, "File intended for a '%s' printer %s\r\n", printers[printer_type].model, bw_mode? "B/W" : "");
|
2012-10-26 23:21:33 -04:00
|
|
|
|
|
|
|
plane_len += 12; /* Add in plane header */
|
2012-10-28 12:19:17 -04:00
|
|
|
paper_code_offset = printers[printer_type].paper_code_offset;
|
2012-10-26 23:21:33 -04:00
|
|
|
if (paper_code_offset != -1)
|
2012-10-28 12:19:17 -04:00
|
|
|
paper_code = printers[printer_type].paper_codes[paper_code_offset];
|
2012-10-26 22:06:47 -04:00
|
|
|
|
|
|
|
/* Libusb setup */
|
|
|
|
libusb_init(&ctx);
|
|
|
|
|
|
|
|
/* Enumerate and find suitable device */
|
|
|
|
num = libusb_get_device_list(ctx, &list);
|
|
|
|
|
|
|
|
for (i = 0 ; i < num ; i++) {
|
|
|
|
struct libusb_device_descriptor desc;
|
|
|
|
|
|
|
|
libusb_get_device_descriptor(list[i], &desc);
|
2012-10-27 09:56:47 -04:00
|
|
|
|
2012-10-26 22:06:47 -04:00
|
|
|
if (desc.idVendor != USB_VID_CANON)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
switch(desc.idProduct) {
|
|
|
|
case USB_PID_CANON_ES1:
|
2012-10-26 23:21:33 -04:00
|
|
|
if (printer_type == P_ES1)
|
|
|
|
goto found2;
|
|
|
|
break;
|
2012-10-26 22:06:47 -04:00
|
|
|
case USB_PID_CANON_ES2:
|
2012-10-26 23:21:33 -04:00
|
|
|
case USB_PID_CANON_ES20:
|
|
|
|
if (printer_type == P_ES2_20)
|
|
|
|
goto found2;
|
|
|
|
break;
|
|
|
|
case USB_PID_CANON_ES3:
|
|
|
|
case USB_PID_CANON_ES30:
|
|
|
|
if (printer_type == P_ES3_30)
|
|
|
|
goto found2;
|
|
|
|
break;
|
|
|
|
case USB_PID_CANON_ES40:
|
|
|
|
case USB_PID_CANON_CP790:
|
|
|
|
if (printer_type == P_ES40)
|
|
|
|
goto found2;
|
|
|
|
break;
|
2012-10-27 23:58:39 -04:00
|
|
|
case USB_PID_CANON_CP10:
|
|
|
|
case USB_PID_CANON_CP100:
|
|
|
|
case USB_PID_CANON_CP200:
|
|
|
|
case USB_PID_CANON_CP220:
|
|
|
|
case USB_PID_CANON_CP300:
|
|
|
|
case USB_PID_CANON_CP330:
|
|
|
|
case USB_PID_CANON_CP400:
|
|
|
|
case USB_PID_CANON_CP500:
|
|
|
|
case USB_PID_CANON_CP510:
|
|
|
|
case USB_PID_CANON_CP520:
|
|
|
|
case USB_PID_CANON_CP530:
|
|
|
|
case USB_PID_CANON_CP600:
|
|
|
|
case USB_PID_CANON_CP710:
|
|
|
|
case USB_PID_CANON_CP720:
|
|
|
|
case USB_PID_CANON_CP730:
|
|
|
|
case USB_PID_CANON_CP740:
|
|
|
|
case USB_PID_CANON_CP750:
|
|
|
|
case USB_PID_CANON_CP760:
|
|
|
|
case USB_PID_CANON_CP770:
|
|
|
|
case USB_PID_CANON_CP780:
|
|
|
|
case USB_PID_CANON_CP800:
|
2012-10-26 23:21:33 -04:00
|
|
|
if (printer_type == P_CP_XXX)
|
|
|
|
goto found2;
|
2012-10-26 22:06:47 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "Found Unrecognized Canon Printer: %04x\n",
|
|
|
|
desc.idProduct);
|
2012-10-26 23:21:33 -04:00
|
|
|
break;
|
2012-10-26 22:06:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == num) {
|
|
|
|
ret = 1;
|
2012-10-28 12:19:17 -04:00
|
|
|
fprintf(stderr, "No suitable printers found (looking for %s)\n", printers[printer_type].model);
|
2012-10-26 22:06:47 -04:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2012-10-26 23:21:33 -04:00
|
|
|
found2:
|
2012-10-27 09:56:47 -04:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
// XXX pull interface list, and make sure we have the right one.
|
|
|
|
if (interface.bInterfaceClass != LIBUSB_CLASS_PRINTER)
|
|
|
|
continue;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2012-10-28 12:19:17 -04:00
|
|
|
fprintf(stderr, "Found a %s printer\r\n", printers[printer_type].model);
|
2012-10-26 22:06:47 -04:00
|
|
|
|
2012-10-27 08:32:37 -04:00
|
|
|
ret = libusb_open(list[i], &dev);
|
|
|
|
if (ret) {
|
|
|
|
fprintf(stderr, "Could not open device (Need to be root?) (%d)\r\n", ret);
|
|
|
|
goto done;
|
|
|
|
}
|
2012-10-26 22:06:47 -04:00
|
|
|
|
2012-10-27 09:56:47 -04:00
|
|
|
claimed = libusb_kernel_driver_active(dev, iface);
|
2012-10-27 08:32:37 -04:00
|
|
|
if (claimed) {
|
2012-10-27 09:56:47 -04:00
|
|
|
ret = libusb_detach_kernel_driver(dev, iface);
|
2012-10-27 08:32:37 -04:00
|
|
|
if (ret) {
|
|
|
|
fprintf(stderr, "Could not detach printer from kernel (%d)\r\n", ret);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
2012-10-26 22:06:47 -04:00
|
|
|
|
2012-10-27 09:56:47 -04:00
|
|
|
ret = libusb_claim_interface(dev, iface);
|
2012-10-27 08:32:37 -04:00
|
|
|
if (ret) {
|
|
|
|
fprintf(stderr, "Could not claim printer interface (%d)\r\n", ret);
|
|
|
|
goto done;
|
|
|
|
}
|
2012-10-26 22:06:47 -04:00
|
|
|
|
2012-10-26 23:21:33 -04:00
|
|
|
top:
|
|
|
|
/* Read in the printer status */
|
|
|
|
ret = libusb_bulk_transfer(dev, ENDPOINT_UP,
|
|
|
|
rdbuf,
|
2012-10-28 12:19:17 -04:00
|
|
|
READBACK_LEN,
|
2012-10-26 23:21:33 -04:00
|
|
|
&num,
|
|
|
|
2000);
|
|
|
|
if (ret < 0) {
|
|
|
|
fprintf(stderr, "libusb error (%d)\n", ret);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2012-10-28 12:19:17 -04:00
|
|
|
if (memcmp(rdbuf, rdbuf2, READBACK_LEN)) {
|
2012-10-26 23:21:33 -04:00
|
|
|
fprintf(stderr, "readback: %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",
|
|
|
|
rdbuf[0], rdbuf[1], rdbuf[2], rdbuf[3],
|
|
|
|
rdbuf[4], rdbuf[5], rdbuf[6], rdbuf[7],
|
|
|
|
rdbuf[8], rdbuf[9], rdbuf[10], rdbuf[11]);
|
2012-10-28 12:19:17 -04:00
|
|
|
memcpy(rdbuf2, rdbuf, READBACK_LEN);
|
2012-10-26 23:21:33 -04:00
|
|
|
} else {
|
|
|
|
sleep(1);
|
|
|
|
}
|
|
|
|
if (state != last_state) {
|
|
|
|
fprintf(stderr, "last_state %d new %d\n", last_state, state);
|
|
|
|
last_state = state;
|
|
|
|
}
|
|
|
|
fflush(stderr);
|
|
|
|
|
|
|
|
switch(state) {
|
|
|
|
case S_IDLE:
|
2012-10-28 12:19:17 -04:00
|
|
|
if (!fancy_memcmp(rdbuf, printers[printer_type].init_readback, READBACK_LEN, paper_code_offset, paper_code)) {
|
2012-10-26 23:21:33 -04:00
|
|
|
state = S_PRINTER_READY;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case S_PRINTER_READY:
|
2012-10-28 12:19:17 -04:00
|
|
|
fprintf(stderr, "Sending init sequence (%d bytes)\n", printers[printer_type].init_length);
|
2012-10-26 23:21:33 -04:00
|
|
|
|
|
|
|
/* Send printer init */
|
|
|
|
ret = libusb_bulk_transfer(dev, ENDPOINT_DOWN,
|
|
|
|
buffer,
|
2012-10-28 12:19:17 -04:00
|
|
|
printers[printer_type].init_length,
|
2012-10-26 23:21:33 -04:00
|
|
|
&num,
|
|
|
|
2000);
|
|
|
|
if (ret < 0) {
|
2012-10-27 09:56:47 -04:00
|
|
|
fprintf(stderr, "libusb error (%d) (%d)\n", ret, num);
|
2012-10-26 23:21:33 -04:00
|
|
|
goto done;
|
|
|
|
}
|
2012-10-26 22:06:47 -04:00
|
|
|
|
2012-10-26 23:21:33 -04:00
|
|
|
/* Realign plane data to start of buffer.. */
|
2012-10-28 12:19:17 -04:00
|
|
|
memmove(buffer, buffer+printers[printer_type].init_length,
|
|
|
|
MAX_HEADER-printers[printer_type].init_length);
|
2012-10-26 22:06:47 -04:00
|
|
|
|
2012-10-26 23:21:33 -04:00
|
|
|
state = S_PRINTER_INIT_SENT;
|
|
|
|
break;
|
|
|
|
case S_PRINTER_INIT_SENT:
|
2012-10-28 12:19:17 -04:00
|
|
|
if (!fancy_memcmp(rdbuf, printers[printer_type].ready_y_readback, READBACK_LEN, paper_code_offset, paper_code)) {
|
2012-10-26 23:21:33 -04:00
|
|
|
state = S_PRINTER_READY_Y;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case S_PRINTER_READY_Y:
|
|
|
|
if (bw_mode)
|
|
|
|
fprintf(stderr, "Sending BLACK plane\n");
|
|
|
|
else
|
|
|
|
fprintf(stderr, "Sending YELLOW plane\n");
|
2012-10-28 12:19:17 -04:00
|
|
|
dump_data(plane_len, MAX_HEADER-printers[printer_type].init_length, data_fd, dev, buffer, BUF_LEN);
|
2012-10-26 23:21:33 -04:00
|
|
|
state = S_PRINTER_Y_SENT;
|
|
|
|
break;
|
|
|
|
case S_PRINTER_Y_SENT:
|
2012-10-28 12:19:17 -04:00
|
|
|
if (!fancy_memcmp(rdbuf, printers[printer_type].ready_m_readback, READBACK_LEN, paper_code_offset, paper_code)) {
|
2012-10-26 23:35:48 -04:00
|
|
|
if (bw_mode)
|
|
|
|
state = S_PRINTER_DONE;
|
|
|
|
else
|
|
|
|
state = S_PRINTER_READY_M;
|
2012-10-26 23:21:33 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case S_PRINTER_READY_M:
|
|
|
|
fprintf(stderr, "Sending MAGENTA plane\n");
|
2012-10-27 10:38:36 -04:00
|
|
|
dump_data(plane_len, 0, data_fd, dev, buffer, BUF_LEN);
|
2012-10-26 23:21:33 -04:00
|
|
|
state = S_PRINTER_M_SENT;
|
|
|
|
break;
|
|
|
|
case S_PRINTER_M_SENT:
|
2012-10-28 12:19:17 -04:00
|
|
|
if (!fancy_memcmp(rdbuf, printers[printer_type].ready_c_readback, READBACK_LEN, paper_code_offset, paper_code)) {
|
2012-10-26 23:21:33 -04:00
|
|
|
state = S_PRINTER_READY_C;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case S_PRINTER_READY_C:
|
|
|
|
fprintf(stderr, "Sending CYAN plane\n");
|
2012-10-27 10:38:36 -04:00
|
|
|
dump_data(plane_len, 0, data_fd, dev, buffer, BUF_LEN);
|
2012-10-26 23:21:33 -04:00
|
|
|
state = S_PRINTER_C_SENT;
|
|
|
|
break;
|
|
|
|
case S_PRINTER_C_SENT:
|
2012-10-28 12:19:17 -04:00
|
|
|
if (!fancy_memcmp(rdbuf, printers[printer_type].done_c_readback, READBACK_LEN, paper_code_offset, paper_code)) {
|
2012-10-26 23:21:33 -04:00
|
|
|
state = S_PRINTER_DONE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case S_PRINTER_DONE:
|
2012-10-28 12:19:17 -04:00
|
|
|
if (printers[printer_type].foot_length) {
|
2012-10-26 23:21:33 -04:00
|
|
|
fprintf(stderr, "Sending cleanup sequence\n");
|
2012-10-28 12:19:17 -04:00
|
|
|
dump_data(printers[printer_type].foot_length, 0, data_fd, dev, buffer, BUF_LEN);
|
2012-10-26 23:21:33 -04:00
|
|
|
}
|
|
|
|
state = S_FINISHED;
|
|
|
|
break;
|
|
|
|
case S_FINISHED:
|
|
|
|
fprintf(stderr, "All data sent to printer!\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (state != S_FINISHED)
|
|
|
|
goto top;
|
2012-10-26 22:06:47 -04:00
|
|
|
|
2012-10-26 23:21:33 -04:00
|
|
|
/* Done printing */
|
|
|
|
|
2012-10-27 09:56:47 -04:00
|
|
|
libusb_release_interface(dev, iface);
|
2012-10-26 22:06:47 -04:00
|
|
|
|
|
|
|
if (claimed)
|
2012-10-27 09:56:47 -04:00
|
|
|
libusb_attach_kernel_driver(dev, iface);
|
2012-10-26 22:06:47 -04:00
|
|
|
|
|
|
|
libusb_close(dev);
|
|
|
|
|
|
|
|
done:
|
|
|
|
libusb_free_device_list(list, 1);
|
|
|
|
libusb_exit(ctx);
|
2012-10-26 23:21:33 -04:00
|
|
|
|
|
|
|
close(data_fd);
|
|
|
|
|
2012-10-26 22:06:47 -04:00
|
|
|
return ret;
|
|
|
|
}
|