Until I refactor tabby_printer_send_page() to be nicer, this'll do

This commit is contained in:
XANTRONIX Development 2016-06-05 17:37:34 -05:00
parent 663b11e37d
commit a2cb39f782

View file

@ -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;