From a2cb39f7820dff6e995cc19a11176f5c5bd358f9 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Sun, 5 Jun 2016 17:37:34 -0500 Subject: [PATCH] Until I refactor tabby_printer_send_page() to be nicer, this'll do --- bin/main.c | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/bin/main.c b/bin/main.c index eee845a..f2db050 100644 --- a/bin/main.c +++ b/bin/main.c @@ -80,20 +80,6 @@ int main(int argc, char **argv) { usleep(100000); } - tabby_printer_job_start(fd, 1, 0x13, 0xe4, 0x40, &response); - - printf("Started job, got status %02x%02x\n", - response.device, response.status); - - while (response.status) { - tabby_printer_send_inquiry(fd, &response); - - printf("Printing, status %02x%02x\n", - response.device, response.status); - - sleep(1); - } - tabby_link_close(fd); return 0;