C#,通过串行端口获取一些随机数(错误的值)



我试图做的是通过按下按钮从我的微控制器获取字符串数据,但我在我的 c# 程序上得到的是一些随机数(附上图片)。例如,我想接收"5",但我收到"650683"。 在mk方面一切正常,我用模拟器检查了它。谢谢是进一步的。随机数图片

  If Button_1 = 0 Then 
     Led_sent = Led_on 
     Print "5" ; 
     Bitwait Button_1 , Set 
     Led_sent = Led_off    


using System;    
using System.Collections.Generic;    
using System.ComponentModel;    
using System.Data;    
using System.Drawing;    
using System.Linq;     
using System.Text;    
using System.Threading.Tasks;     
using System.Windows.Forms;    
using System.IO.Ports;    
namespace WindowsFormsApplication8 
{
    public partial class Form1 : Form
    {
         public Form1()
         {
              InitializeComponent();
          }
         private void button1_Click(object sender, EventArgs e)   // Here i send a byte to MK
         {
             var dataByte = new byte[] { 0x00 };
             serialPort1.Write(dataByte, 0, 1);
         }
         private void textBox1_TextChanged(object sender, EventArgs e)
        {
        }
        private void button2_Click(object sender, EventArgs e)  // choosing a right com port
        {
            serialPort1.PortName = textBox1.Text;
            serialPort1.BaudRate = Convert.ToInt32(textBox2.Text);
        }
        int rs;
        private void serialPort1_DataReceived(object sender, SerialDataReceivedEventArgs e) // Data Receive Handler
        {
            try
            {
                rs = serialPort1.ReadByte();
                this.Invoke(new EventHandler(type));
            }
            catch (System.TimeoutException) { }
        }
        void type(object s,EventArgs e)              // receive data
        {
            textBox4.Text += rs.ToString(); 
        }
        private void button3_Click(object sender, EventArgs e)   // OPen port
        {
            serialPort1.Open();
        }
        private void button4_Click(object sender, EventArgs e)  // Close port
        {
            serialPort1.Close();
        }
    }
}

我看到两个明显的问题。

串口需要很多设置

我已经很久没有使用串行端口了,但我记得有很多设置无法自动协商,例如是否使用奇偶校验位、是否使用停止位、是否等待 CTS 信号等。 检查手册并确保已正确设置所有这些。

消息格式并不总是很明显

仅仅因为你编写的代码说Print 5并不意味着五通过电缆。 您需要知道 5 是如何编码的,它是否包含在任何元数据中,是否发送换行符或回车符,它是 ASCII 还是 UTF8 等。 再次,请参阅文档。

相关内容

  • 没有找到相关文章

最新更新