您好,我正在使用以下文档中的以下打印机和仿真命令: http ://www.hengstler.com/gfx/file/shop/printer/eXtendo_X-80/D-684-112_EmulationCommandSetReference_eXtendo-E-V1_07.pdf
我使用 Android USB Manager 类在 Java 中执行此操作,如下所示:
....
public void printData(String str, int characterSize, int startPos){
Log.d(TAG, str);
final String character = str;
setCharSize(characterSize);
startPage(startPos);
if(character != null){
Thread t = new Thread(new Runnable() {
@Override
public void run() {
byte[] bytes = character.getBytes();
ByteBuffer buffer = ByteBuffer.allocate(bytes.length);
buffer.put(bytes);
UsbRequest req = new UsbRequest();
req.initialize(mConnection, ep);
req.queue(buffer, bytes.length);
if(mConnection.requestWait() == req){
buffer.clear();
endPage();
} else{
Log.d("USB", "No USBRequest received");
}
}
});
t.start();
}
}
public void endPage(){
Thread t = new Thread(new Runnable() {
@Override
public void run() {
byte[] array = new byte[]{29,(byte)240,06,1,20};
ByteBuffer buffer = ByteBuffer.allocate(array.length);
buffer.put(array);
UsbRequest req = new UsbRequest();
req.initialize(mConnection, ep);
req.queue(buffer, array.length);
if(mConnection.requestWait() == req){
buffer.clear();
} else{
Log.d("USB", "No USBRequest received");
}
}
});
t.start();
}
....
这一切都很好,我能够打印,使用换行符,设置字体/字符大小......等等。我遇到的唯一方法是上面的方法(endPage 函数),它应该剪纸(参见上面的 PDF)。
这是在 PDF 中: 2.1.18 ESC [F0]+[06]+[x]+[n]+[m] 页尾 第 27 页
这似乎没有任何作用。我想也许我需要使用 controlTransfer ,也许需要使用 endpoint0 (我也已经在端点中捕获了它),但这也没有任何作用。有没有人看到我如何将这个特定命令发送到设备的明显问题?这是第一次使用 USB 管理器/设备 API 和传输,所以我对它不是很熟悉。由于其他功能有效,我希望对于更熟悉 USB 接口/通信的人来说,它可能是一个容易的查找/修复。
更新 我认为PDF有一些错误,cut函数说29但1B^16..显然不正确,所以我也试过这样:
char[] initEP = new char[]{0x1B, 0xF1, 0x01, 0x03, 0x0A, 150};
char[] cutP = new char[]{0x1B,0xF0,0x06,01,10};
String Ptxt= new String(initEP)+ " text data \n \n \n"+ new String(cutP);
byte[] array = Ptxt.getBytes();
依然没有。此外,初始设置(页面大小)似乎并没有做任何事情,这让我相信 ESC 有问题?