问题描述
我正在调试一些使用串行端口的单声道代码.在某个时候,单声道用以下代码编写一个表:
I am debugging some mono code that is using the serial port.At some point the mono write a table with the following code :
// Send the 1024 byte (256 word) CRC table
progressBar = new ProgressBar();
progressBar.Update(0.0,"Sending CRC table...");
for (int i = 0; i < MyCRC.Length; i++)
{
MySP.Write(MyCRC[i].ToString("x8"));
progressBar.Percent = (((Double)(i+1))/MyCRC.Length);
}
progressBar.Update(100.0,"CRC table sent.");
MySP是SerialPort实例.但是,当我使用strace跟踪此代码时,我认为这是生成的系统调用:
MySP is a SerialPort instance.When I trace this code using strace however, here is what I think are the resulting system calls :
16620 write(3, "3ab551ce", 8) = -1 EAGAIN (Resource temporarily unavailable)
16620 write(3, "\0003ab551c", 8) = -1 EAGAIN (Resource temporarily unavailable)
16620 write(3, "\0\0003ab551", 8) = -1 EAGAIN (Resource temporarily unavailable)
16620 write(3, "\0\0\0003ab55", 8) = -1 EAGAIN (Resource temporarily unavailable)
16620 write(3, "\10\0\0\0003ab5", 8) = -1 EAGAIN (Resource temporarily unavailable)
16620 write(3, "\0\10\0\0\0003ab", 8) = -1 EAGAIN (Resource temporarily unavailable)
...
16620 write(3, "\0005\0\230O+\10\0", 8) = -1 EAGAIN (Resource temporarily unavailable)
16620 write(3, "E\0005\0\230O+\10", 8) = -1 EAGAIN (Resource temporarily unavailable)
16620 write(3, "\0E\0005\0\230O+", 8) = -1 EAGAIN (Resource temporarily unavailable)
16620 write(3, "\0\0E\0005\0\230O", 8) = -1 EAGAIN (Resource temporarily unavailable)
16620 write(3, "\0\0\0E\0005\0\230", 8) = -1 EAGAIN (Resource temporarily unavailable)
16620 write(3, "4\0\0\0E\0005\0", 8) = 8
16620 write(3, "\230O+\10\0\0\0\0", 8) = 8
16620 write(3, "\0\0\0\0\10\0\0\0", 8) = -1 EAGAIN (Resource temporarily unavailable)
我的理解是SerialPort Write方法不能正确处理-EAGAIN情况,并在重新开始写入之前将索引更新为-1.因为每次尝试后,原始缓冲区的内容都会移动一个字节.
My understanding is that the SerialPort Write method dos not handle the -EAGAIN case correctly and updates the index by -1 before restarting the write. because after each try, the content of the original buffer is shifted by one byte.
我的问题是,这是一个已知问题,如何修改SerialPort类以使其正常运行或以阻塞方式使用串行端口?
My question is, is it a known problem, and how can I modify the SerialPort class so that it behaves correctly or use the serial port in a blocking way ?
有关Mono的文档SerialPort类不是很有帮助
其他信息:单声道-V输出:
Additional Info : mono -V output:
Mono JIT compiler version 1.2.6 (tarball)
Copyright (C) 2002-2007 Novell, Inc and Contributors. www.mono-project.com
TLS: __thread
GC: Included Boehm (with typed GC)
SIGSEGV: altstack
Notifications: epoll
Architecture: x86
Disabled: none
推荐答案
考虑升级到新版本.
该错误已修复这里.
这篇关于Mono System.IO.Ports SerialPort类错误处理的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!