Skip to content

Commit

Permalink
fix: 自动发送拷贝文字改为复制
Browse files Browse the repository at this point in the history
add: 增加右侧功能窗口开关隐藏按钮
fix: 优化布局,调整可拖动分隔符颜色效果
fix: 更新截图/README.md
  • Loading branch information
a2633063 committed Jun 1, 2023
1 parent 23365c0 commit 8c64aab
Show file tree
Hide file tree
Showing 8 changed files with 124 additions and 64 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,25 @@
vs2022 使用C#语言写的串口调试助手.
主要为了以后方便调试专用的串口通信协议,当需要时,可以在此项目基础上修改串口接收函数,以直接解析协议内容,方便调试

当前功能:

- [x] 串口参数调整
- [x] RTS / DTR控制
- [x] 接收自动换行
- [x] 接收日志模式显示
- [x] 接收区输入直接发送
- [ ] 接收数据自动保存至文件
- [x] 部分中文编码支持
- [x] 发送转移字符处理
- [x] 发送文件数据源
- [ ] 发送附加位
- [x] 自动发送
- [x] 快捷发送指令,数量无限制
- [x] 自动发送(批量发送),数量无限制
- [x] ASCII表查看
- [x] 接收/发送统计
- [x] 窗口区域大小可以直接拖动调整大小



![软件截图](https://cdn.jsdelivr.net/gh/a2633063/ZUART/运行截图/pic.png)
16 changes: 8 additions & 8 deletions ZUART/BatchSend/FormBatchSend.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

58 changes: 48 additions & 10 deletions ZUART/ZUART.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions ZUART/ZUART.cs
Original file line number Diff line number Diff line change
Expand Up @@ -181,5 +181,9 @@ private void timerIcon_Tick(object sender, EventArgs e)
this.Icon = Properties.Resources.zuart_open_2;
}

private void labSplitSwitch_Click(object sender, EventArgs e)
{
splitContainer1.Panel2Collapsed = !splitContainer1.Panel2Collapsed;
}
}
}
Loading

0 comments on commit 8c64aab

Please sign in to comment.