DataReceviedHandler 错误,可能是线程问题
在串行端口的 DataReceviedHandler 中,我正在测试是否设置了布尔值。 如果没有,我将下一个块发送到串行端口。
布尔值由类事件设置。在图中,您可以看到程序进入了 if 语句,尽管 bool 为 false。这是线程问题吗?我能做什么?
一只忙碌的猫 http://img163.imageshack.us/img163/3324/boolh.png
如果尝试了这个:
lock (_syncLock)
{
if (_wrEEPROM)
{
//Hier müssen die weiteren 128er Blöche übertragen werden
SerialControl.Port.Write(_yTestMod.CreateYModemBlock(wrEE.EEPROMar, _eepromBlockIndex), 0,
_yTestMod.CreateYModemBlock(wrEE.EEPROMar, 2).Length);
_eepromBlockIndex += 1;
}
}
并且在事件中尝试了这个:
lock (_syncLock)
{
_eeprom = false;
_logger = false;
_wrEEPROM = false;
}
但它仍然不起作用。
In the DataReceviedHandler of an serial port i'm testing if a bool is set.
If not I'm sending the next block to the serial port.
The boolean is set by the event of class. In the picture you can see that the programm goes into the if-statement, although the bool is false. Is this a thread problem? What could I do?
a busy cat http://img163.imageshack.us/img163/3324/boolh.png
If tried this:
lock (_syncLock)
{
if (_wrEEPROM)
{
//Hier müssen die weiteren 128er Blöche übertragen werden
SerialControl.Port.Write(_yTestMod.CreateYModemBlock(wrEE.EEPROMar, _eepromBlockIndex), 0,
_yTestMod.CreateYModemBlock(wrEE.EEPROMar, 2).Length);
_eepromBlockIndex += 1;
}
}
and this in the event:
lock (_syncLock)
{
_eeprom = false;
_logger = false;
_wrEEPROM = false;
}
but it's still not working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
到锁:
创建一个私有字段变量:
然后在您设置或读取“标志”变量时使用
,或者
在您的情况下将事件的孔处理程序和上面显示的代码包装在这样的锁中开始。
to the lock:
create a private field-variable:
and then where ever you set or read your "Flag"-variable use
or
in your case wrap the hole handler for the event and your code shown above in such a lock to start with.