在线程C#中使用SerialPort命令

时间:2017-09-04 01:02:15

标签: c# multithreading serial-communication

我有一个帖子,我想用串口发送一些命令。我该怎么做?

Thread execProcess = new Thread(eProcess);

static bool isRunning = false;

static void eProcess()
{
    while(true)
    {
        if(isRunning)
        {
            sendCmd(cmd); //cmd is a string
        }
    }
}

void sendCmd(string cmd)
{
   serialPort.WriteLine(cmd);
}

我该怎么做?

1 个答案:

答案 0 :(得分:0)

我不知道,您的信息是否来自.NET线程。见这里:

Thread class

SerialPort class