DataReceviedHandler 错误,可能是线程问题

发布于 2024-12-02 02:11:53 字数 1037 浏览 1 评论 0原文

在串行端口的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

万水千山粽是情ミ 2024-12-09 02:11:53

到锁:

创建一个私有字段变量:

private Object _syncLock = new Object();

然后在您设置或读取“标志”变量时使用

lock(_syncLock)
{
  myFlag = true; // whatever
}

,或者

lock(_syncLock)
{
  return myFlag;
}

在您的情况下将事件的孔处理程序和上面显示的代码包装在这样的锁中开始。

to the lock:

create a private field-variable:

private Object _syncLock = new Object();

and then where ever you set or read your "Flag"-variable use

lock(_syncLock)
{
  myFlag = true; // whatever
}

or

lock(_syncLock)
{
  return myFlag;
}

in your case wrap the hole handler for the event and your code shown above in such a lock to start with.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文