串口读取结果有response还有我给的command,怎么解决?

Serial port read result contains response but also the command I give, how to solve this?

我正在为调制解调器通信工具编写一个 GUI,能够接收 AT 命令以及 return 在调制解调器中执行后来自调制解调器的结果。我使用串行端口数据接收事件来处理接收到的数据,但它不仅包含来自调制解调器的响应,还包含我给出的 AT 命令。现在我认为是因为:

1) 从我的 GUI 发送命令

2) 调制解调器收到它,然后触发数据接收事件

3) 调制解调器运行命令,回复也触发数据接收事件。

4) 接收到的数据包含我给定的命令和回复

例如:

Input: AT+COPS=0

Output:AT+COPS=0OK (OK is modem response)

Input: AT

Output:ATOK (OK is modem response)

我在 MSDN 中找不到解决方案。调制解调器中是否有两个不同的缓冲区? 如何解决?

这是我的代码:

void serialPort_DataReceived(object s, SerialDataReceivedEventArgs e)
{

    if (e.EventType != SerialData.Chars)
    {
        return;
    }
    try
    {
        System.Threading.Thread.Sleep(1000);
        string indata = atPort.ReadExisting();
        string status = timeStamp.ToShortDateString() + " " + timeStamp.ToUniversalTime() + "   " + "Read from Modem: " + indata;
        this.Invoke(new MethodInvoker(delegate () { this.listBox_CommandOutput.Items.Add(status); }));
    }
    catch (Exception ex)
    {

    }
}


private void executeCommandLine()
{
    if (this.textBox_CommandLine.Text != "")
    {
        try
        {
            atPort.DiscardInBuffer();
            atPort.DiscardOutBuffer();
            this.atPort.Write(this.textBox_CommandLine.Text.ToString()+"\r");
            this.listBox_CommandOutput.Items.Add(timeStamp.ToShortDateString() + " " + timeStamp.ToUniversalTime() + "   " + "Write to Modem: " + this.textBox_CommandLine.Text.ToString());

        }
        catch (Exception exc)
        {
            this.listBox_CommandOutput.Items.Add(exc.ToString());
        }
    }
    else MessageBox.Show("Command can't be void.", "COM talk", MessageBoxButtons.OK);

}

问题不在你的代码中。默认情况下,某些调制解调器默认使用 回显模式:它们将发送给它们的每个字符回显给发件人(因此您可以像终端一样使用它们)。

您可以使用 AT 命令禁用回显模式:

ATE0