我想从运行WM6.5的摩托罗拉ES400在Zebra iMZ320上打印一些线条。我正在使用32feet库和C#通过蓝牙进行通信。
我的代码曾经在MZ320上运行得很好,但是对于新的iMZ320,通信有时会停止(即使在打印作业的中间),我必须重新启动打印机,因为它一直拒绝再次连接。
我试图在几行中打破CPCL字符串并以100ms的间隔逐行发送,但没有任何改进。
我注意到当我关闭我的应用并重新启动它时,通信肯定会失败。
private void btPrint_Click(object sender, EventArgs e)
{
// Activate BT
BluetoothRadio.PrimaryRadio.Mode = RadioMode.Connectable;
System.Threading.Thread.Sleep(1000);
// Connect
BluetoothAddress btAddress;
btAddress = BluetoothAddress.Parse("0022583165F7");
BluetoothClient btClient = new BluetoothClient();
try
{
btClient.Connect(new BluetoothEndPoint(btAddress, BluetoothService.SerialPort));
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
return;
}
// Send data
string CPCLStr1 =
"! 0 200 200 210 1" + Environment.NewLine +
"ML 25" + Environment.NewLine +
"TEXT 7 0 10 20" + Environment.NewLine +
"Just" + Environment.NewLine +
"Testing" + Environment.NewLine +
"ENDML" + Environment.NewLine +
"FORM" + Environment.NewLine +
"PRINT" + Environment.NewLine;
// Convert CPCL String to byte array
byte[] CPCLbytes1 = ASCIIEncoding.ASCII.GetBytes(CPCLStr1);
NetworkStream ns = btClient.GetStream();
ns.Write(CPCLbytes1, 0, CPCLbytes1.Length);
btClient.dispose();
btClient.Close();
}
答案 0 :(得分:1)
Zebra provides a windows mobile sdk为您建立蓝牙连接。
答案 1 :(得分:0)
摩托罗拉WinMobile手持设备附带的蓝牙堆栈(StoneStreetOne和Microsoft)中存在多个错误,这些错误将导致与此类似的故障。由于您正在为BT使用32Feet库,因此您应该能够切换堆栈(从SSO切换到MS,反之亦然),而无需对应用程序进行任何代码更改。这需要进行简单的注册表修改 - 有关详细信息,请参阅http://christian-helle.blogspot.com/2010/10/motorola-dual-bluetooth-stack-support.html。
另外,我会确保您运行摩托罗拉的最新WinMobile版本。我还要确保您拥有iMZ的最新固件(截至2014年4月的V73.19.6Z)。除了一般的良好实践外,摩托罗拉和Zebra都在最近的固件版本中修复了与蓝牙相关的问题。
从PC / Android设备进行的额外测试可以让您深入了解问题的根源是打印机还是手持设备 - 如果从其他设备连接到打印机时无法重现此问题,那么掌上电脑就是可能有过错。