吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 13334|回复: 36
收起左侧

[原创工具] 自己写的-基于C#的串口调试助手

[复制链接]
鱼儿飞 发表于 2018-1-12 09:21
如题,需要的拿去
TIM截图20180112091822.png

可以过滤不可用的串口
保存接收的数据。
别的基本上差不多,个人练手作,大牛勿喷。

吾爱首发。

串口调试助手.rar

98.45 KB, 阅读权限: 10, 下载次数: 371, 下载积分: 吾爱币 -2 CB

免费评分

参与人数 9吾爱币 +14 热心值 +8 收起 理由
深秋残枫 + 1 + 1 谢谢@Thanks!
leonqp1030 + 1 + 1 感谢发布原创作品,吾爱破解论坛因你更精彩!
蓝色切尔西 + 1 + 1 谢谢@Thanks!
涛的世界 + 1 + 1 用心讨论,共获提升!
abc2002 + 1 + 1 我很赞同!
不仅仅是龙哥啊 + 1 + 1 热心回复!
z327774948 + 1 + 1 谢谢 @Thanks!
qn542231788 + 1 谢谢@Thanks!
Hmily + 6 + 1 感谢发布原创作品,吾爱破解论坛因你更精彩!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

ipc2008 发表于 2018-1-13 13:44
protected void serialPortSend(string stringSend, bool forceASCII = false)
{
    if (!this.com.IsOpen)
    {
        MessageBox.Show("请打开窗口后再进行发送操作.", "提醒", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
    }
    else
    {
        try
        {
            this.listening = true;
            if (this.sendASCII.Checked)
            {
                byte[] bytes = Encoding.ASCII.GetBytes(stringSend);
                this.com.Write(bytes, 0, bytes.Length);
            }
            if (this.send16.Checked)
            {
                if (this.checkBox1.Checked)
                {
                    this.com.WriteLine(stringSend);
                }
                else
                {
                    this.com.Write(stringSend);
                }
            }
            if (this.SendUTF8.Checked)
            {
                byte[] buffer = new UTF8Encoding().GetBytes(stringSend);
                this.com.Write(buffer, 0, buffer.Length);
            }
        }
        catch (Exception exception1)
        {
            MessageBox.Show(exception1.Message);
        }
        finally
        {
            this.listening = false;
        }
    }
}


 楼主| 鱼儿飞 发表于 2018-1-14 19:31
ipc2008 发表于 2018-1-13 13:44
protected void serialPortSend(string stringSend, bool forceASCII = false)
{
    if (!this.com.IsOp ...

难道是你没有打开串口就点击了发送?
yangfeng 发表于 2018-1-12 10:22
小熙-dream 发表于 2018-1-12 10:24
6.。。。。。
头像被屏蔽
Yixinfz 发表于 2018-1-12 11:20
提示: 作者被禁止或删除 内容自动屏蔽
huangxu 发表于 2018-1-12 12:13
学习下,感谢分享
runfog 发表于 2018-1-12 12:47
串口调试助手,这个厉害,有没有c++版本的?
zaq123456 发表于 2018-1-12 12:51
支持一下,
qn542231788 发表于 2018-1-13 00:08
收藏了   谢谢  
odd2008 发表于 2018-1-13 00:30
做为练手来说还是不错的,其他串口有的功能基本都有了
guong 发表于 2018-1-13 06:21
学习一下了 感谢分享
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-26 06:31

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表