怎么串口通信 读取串口数据

总体都不清楚,谁能和我大致上的步骤讲讲??用vc的... 总体都不清楚,谁能和我大致上的步骤讲讲??
用vc的
展开
 我来答
单片机电路程序设计
2012-08-09
知道答主
回答量:63
采纳率:0%
帮助的人:29.7万
展开全部
如果是电脑串口,首先串口线要连接到rs232芯片,然后把232的输出,TXD.RXD等连接到单片机或其他ttl信号端设备。
追问
是vc,上位机的啊
追答
给你一个程序看看了:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Text;
namespace kkkk
{
public partial class Form1 : Form
{

public Form1()
{
InitializeComponent();

//各初始化
//定义流文件存在当前数据
frw = new FileStream("temp.data", FileMode.Create, FileAccess.Write, FileShare.ReadWrite, 4096, false);
userInput = new System.IO.MemoryStream();

//
ss = "";
//记录数据个数
ss_count = 0;
//创建串口类对象空间
this.spt = new System.IO.Ports.SerialPort();
//字符数组——记录系统上COM口
por_name = new string[10];

//获取COM口个数并保存到数组中
por_name = System.IO.Ports.SerialPort.GetPortNames();
//把COM口放到组合框中供选择
if (por_name[0] == "")
{
MessageBox.Show("请检查设备!");
}
else
{
for (int i = 0; i < por_name.Length; i++)
{
comboBox1.Items.Add(por_name[i].ToString());
}
}
//显示各选择项的默认项
comboBox1.SelectedIndex =0;

//初始化各串口各参数的默认项
try
{
//端口号,每字节长度,校验位,停止位,波特率
this.spt.PortName = "COM1";
this.spt.DataBits = 8;
this.spt.Parity = System.IO.Ports.Parity.None;
this.spt.StopBits = System.IO.Ports.StopBits.One;
this.spt.BaudRate = 9600;
comboBox6.SelectedIndex = 0;
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式