我正在开发一个java应用程序(将在linux桌面上运行),使用TSC TTP-244 Pro打印机打印运输标签。该打印机支持TSPL2命令。
我正在使用USB连接,并开始使用usb4java高级API编写一些简单的测试,以便与此打印机进行通信。我能够成功查询打印机状态/状态<ESC>?!
或<ESC>?S
(<ESC>
这里是ASCII 27),但没有任何问题但无法发出PRINT
命令。< / p>
以下是我的代码。
@Test
public void printTest() throws UsbException
{
final UsbServices services = UsbHostManager.getUsbServices();
UsbDevice printerUsbDevice = findDevice(services.getRootUsbHub(), 0x1234, 0x1734);
UsbConfiguration configuration = device.getActiveUsbConfiguration();
UsbInterface iface = configuration.getUsbInterface((byte) 1);
iface.claim();
try
{
UsbEndpoint inEndpoint = iface.getUsbEndpoint(0x01);
UsbPipe pipe = inEndpoint.getUsbPipe();
UsbEndpoint outEndpoint = iface.getUsbEndpoint(0x82);
UsbPipe pipe2 = outEndpoint.getUsbPipe();
pipe2.open();
pipe.open();
pipe.syncSubmit(27 + "!?".getBytes("US-ASCII"));
pipe.close();
pipe2.open();
byte[] statusResponse = pipe2.syncSubmit(new byte[1]);
pipe2.close();
System.out.println(new String(statusResponse, "US-ASCII")); // Here status got is "00" if ok otherwise getting error code
pipe.open();
pipe.syncSubmit("SIZE 57 mm,37 mm");
pipe.syncSubmit("GAP 3 mm,0 mm");
pipe.syncSubmit("DIRECTION 1");
pipe.syncSubmit("CLS");
pipe.syncSubmit("TEXT 10,10 "3",0,1,1, "Test printing");
pipe.syncSubmit("PRINT 1");
pipe.close();
// at this pint of time, printer is not printing anything instead just idle
}
finally
{
iface.release();
}
}
private UsbDevice findDevice(UsbHub hub, short vendorId, short productId)
{
for (UsbDevice device : (List<UsbDevice>) hub.getAttachedUsbDevices())
{
UsbDeviceDescriptor desc = device.getUsbDeviceDescriptor();
if (desc.idVendor() == vendorId && desc.idProduct() == productId) return device;
if (device.isUsbHub())
{
device = findDevice((UsbHub) device, vendorId, productId);
if (device != null) return device;
}
}
return null;
}
我的USB通讯是否正确?
这种与TSC打印机的USB通信是否可以在不安装任何打印机驱动程序的情况下运行(在Linux上)?
答案 0 :(得分:1)
是的,您的沟通是正确的。
是的,linux上的USB通信可以直接使用,无需驱动程序。
如果打印机不接受某个命令,请仔细检查该命令,可能应该有一些控制总和,或者你错过了什么?研究这个命令应该如何构建。
我已经完成了一个使用串口与打印机通信的项目,命令的细节非常重要。 status命令可能没有控制权并且非常简单,这就是它开箱即用的原因,但是使用更复杂的命令需要阅读文档和调试。
除了“状态”通信之外,打印机还有可能使用不同的USB端点。