- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一台使用串行端口连接到计算机的称重机。这是一台非常古老的机器,我们正试图减轻它的重量并保存在数据库中。
机器返回的重量有?
等无效字符,重量显示为??2?0
,本来应该是02220
.
我知道它与网络搜索结果表明的编码有关。但我不知道我到底错过了什么。
这是我的代码:
private void port_DataReceived(object sender, SerialDataReceivedEventArgs e)
{
// This method will be called when there is data waiting in the port buffer
// Read all the data waiting in the buffer
// string data = comport.ReadExisting();
// Display the text to the user in the Rich Text Box
Log(LogMsgType1.Incoming, s);
}
public void OpenThisPort()
{
bool error = false;
// If the port is open, close it
if (comport.IsOpen)
{
comport.Close();
}
else
{
comport.BaudRate = int.Parse("1200");
comport.DataBits = int.Parse("8");
comport.StopBits = StopBits.One;
comport.Parity = Parity.None;
comport.PortName = "COM1";
delStart = 0;
delLength = 9;
comport.RtsEnable = true;
comport.DtrEnable = true;
comport.Encoding = System.Text.Encoding.GetEncoding(28591);
}
如何准确确定将应用哪种编码?知道我在这里缺少什么吗?
最佳答案
这可能不是编码问题,而是硬件错误。尝试检测它:
#region comPort_ErrorReceived
/// <summary>
/// This method will be called when there's data waiting in the buffer
/// and error occured.
/// DisplayData is a custom method used for logging
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
void comPort_ErrorReceived(object sender, SerialErrorReceivedEventArgs e)
{
SerialError sr = e.EventType;
switch (sr)
{
case SerialError.Frame:
DisplayData(newLog, EventLogEntryType.Error, "On port " + comPort.PortName
+ " the hardware detected a framing error.\n", 45);
break;
case SerialError.Overrun:
DisplayData(newLog, EventLogEntryType.Error, "On port " + comPort.PortName
+ " a character-buffer overrun has occurred. The next character is lost.\n", 46);
break;
case SerialError.RXOver:
DisplayData(newLog, EventLogEntryType.Error, "On port " + comPort.PortName
+ " an input buffer overflow has occured. There is either no room in the input buffer,"
+ " or a character was received after the End-Of-File (EOF) character.\n", 47);
break;
case SerialError.RXParity:
DisplayData(newLog, EventLogEntryType.Error, "On port " + comPort.PortName
+ " the hardware detected a parity error.\n", 48);
break;
case SerialError.TXFull:
DisplayData(newLog, EventLogEntryType.Error, "On port " + comPort.PortName
+ " the application tried to transmit a character, but the output buffer was full.\n", 49);
break;
default:
DisplayData(newLog, EventLogEntryType.Error, "On port " + comPort.PortName
+ " an unknown error occurred.\n", 50);
break;
}
}
乍一看像是框架错误,因为部分数据似乎是正确的。对于初学者,请确保您的电缆是好的。您也可以尝试使用其他应用程序连接到您的设备,例如腻子。
同时以字节形式读取数据可能是个好主意(然后您可以在显示之前将其转换为十六进制)。这样您就可以了解实际发送的内容。
private void port_DataReceived(object sender, SerialDataReceivedEventArgs e)
{
int btr = comPort.BytesToRead;
byte[] comBuffer = new byte[btr];
comPort.Read(comBuffer, 0, btr);
Console.WriteLine(ByteToHex(comBuffer));
}
private string ByteToHex(byte[] comByte)
{
StringBuilder builder = new StringBuilder(comByte.Length * 3);
foreach (byte data in comByte)
builder.Append(Convert.ToString(data, 16).PadLeft(2, '0').PadRight(3, ' '));
return builder.ToString().ToUpper();
}
关于c# - 串行端口返回无效数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14253739/
我想知道两者都可以 UnicastRemoteObject.exportObject(Remote,portNo) & LocateRegistry.createRegistry(portNo); p
我有一个运行 tomcat 8.0.23 和 apache httpd 服务器的 vps。在 tomcat 中我有 3 个项目让我们用下面的名字来调用它们: /firstpro /secondpro
我试图将非 SSL 端口 8080 上的流量重定向到 SSL 端口 8443(在 Jboss 4.2.3.GA 版本上),但它不起作用。当我在此端口上访问我的 web 应用程序时,它会停留在该端口上并
跟进: Possible to query the native inbox of a mobile from J2ME? 我怎么知道Kannel将 SMS 发送到 native 收件箱端口(我想是端
我想用 python 开发一个代码,它将在本地主机中打开一个端口并将日志发送到该端口。日志只是 python 文件的命令输出。 喜欢: hello.py i = 0 while True:
我的 tomcat 在我的 linux 机器上独立运行在端口 7778 上。我已经将 apache 配置为在端口 443 上的 ssl 上运行。 我的 httpd.conf 如下: Liste
我正在使用 React Native 作为我想要部署到 iOS 和 Android 的头像生成器。我正在为我的服务器使用 Express,它使用 localhost:3000,react native
我正在使用主板(MSI Gaming主板)和两个支持NIC卡的e1000e驱动程序构建自定义操作系统。我想使用NIC卡中的端口而不是板载端口。 为了禁用板载端口,我尝试使用 70-persistanc
我目前使用的是xampp 1.7.0,我的php版本是5.2.8 我将我的 php.ini 文件更改为: [mail function] ; For Win32 only. SMTP = smtp.g
我有以下代码来配置 Jetty 服务器: @Configuration public class RedirectHttpToHttpsOnJetty2Config { @Bean p
我使用 Ubuntu 使用 Certbot 生成了一个 SSL。这已经自动更新了我的 Nginx 配置文件并添加了一个额外的监听端口。我担心我是否只需要监听一个端口(80 或 443)而不是两个端口,
我被困在一个点,我必须调用 pentaho API 来验证来自 reactJS 应用程序的用户。两者都在我的本地机器上。到目前为止我尝试过的事情: a) 在 reactJS 配置文件 - packag
我的 native 项目在 android 模拟器上运行 但是每当我尝试将我的项目与我的 android 设备连接时,就会出现上述错误。 注意:我的手机和笔记本电脑使用相同的 wifi 连接。 请帮我
我正在运行 Elasticsearch 服务器。除了 9200/9300 端口外,Elasticsearch 还开放了很多端口,如下所示。 elasticsearch-service-x64.exe
<portType> 元素是最重要的 WSDL 元素 <portType>可描述一个 web service、可被执行的操作,以及相关的消息 我们可以把 <portT
Stack Overflow 的其他地方有一个关于让 Icecast 出现在端口 80 上的问题,我已经阅读了该问题,但仍然无法让我的服务器在端口 80 上工作。 我的 icecast.xml 有这些
如果这是一个简单的问题,我很抱歉,我对这种事情不熟悉。 我正在尝试确定我的代理服务器 ip 和端口号,以便使用 google 日历同步程序。我使用谷歌浏览器下载了 proxy.pac 文件。最后一行是
我想知道 cassnadra 是否对所有 JMX 连接/节点间通信使用 7199 端口?与早期版本一样,7199 仅用于初始握手,但后来它使用随机选择 1024-65355 端口之间的任何端口。 谢谢
在docker hub中,有一个容器,该容器在启动时会默认打开9000端口。可以通过传递环境变量server__port来覆盖该端口。 我正在尝试在dockerfile中传递Heroku $ PORT
我已经在互联网上公开的虚拟机中安装了 docker。我已经在 VM 的 docker 容器中安装了 mongodb。Mongodb 正在监听 27017港口。 我已经使用以下步骤安装 docker
我是一名优秀的程序员,十分优秀!