Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -408,9 +408,10 @@ private byte[] getConfigLabel(ZebraPrinter printer, String label) {
configLabel = printLabel.getBytes();

} else if (printerLanguage == PrinterLanguage.CPCL) {
String cpclConfigLabel = "! 0 200 200 406 1\r\n" + "ON-FEED IGNORE\r\n" + "BOX 20 20 380 380 8\r\n"
// String cpclConfigLabel = "! 0 200 200 406 1\r\n" + "ON-FEED IGNORE\r\n" + "BOX 20 20 380 380 8\r\n"
+ "T 0 6 137 177 TEST\r\n" + "PRINT\r\n";
configLabel = cpclConfigLabel.getBytes();
// configLabel = cpclConfigLabel.getBytes();
configLabel = printLabel.getBytes();
}
} catch (ConnectionException e) {
Log.d("Connection err", e.toString());
Expand Down Expand Up @@ -506,4 +507,4 @@ public void onBluetoothServiceStateChanged(int state, Map<String, Object> bundle
}
}

}
}