基本信息
源码名称:基于 MFC 的网络调试工具
源码大小:0.19M
文件格式:.zip
开发语言:C/C++
更新时间:2023-05-16
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 5 元 
   源码介绍

基于 MFC 的网络调试工具

   Ucom 是一个基于 MFC 的高效串口、网络调试工具,单可执行文件运行无需依赖动态链接库,支持多开和多种扩展功能。

     **多数据源**,提供串口和网络两个数据源,切换数据源,不影响软件的其他功能
- **配置保存功能**,当关闭软件时候会自动保存串口、网络配置里的信息和用户设定的背景色和字体色等配置
- **自定义接收区主题**,可以定制接收框的主题样式
- **扩展工具面板**,点击 `探索>>` 按钮可以在窗口右侧扩展出接收图表、编码解码、接收监视、发送助手等工具面板
- **动态刷新串口**,当有新设备接入时,点击串口号,在下拉菜单里选择刷新串口可以扫描端口变动
- **多编码支持**,完全支持接收区以 UTF-8 和 Unicode 的编码显示
- **透明传输**,不会阻碍 0x00, 0x11 等字节的发送接收
- **支持常用串口流控制**
- **支持文件发送**,建议不要发送太大的文件
- **支持 AT 模式**,回车发送数据(数据包含回车),发送的数据同时以特殊显示格式(红色字体)添到接收显示的新行中,上下方向键调用历史命令(数据),输入框内按 Tab 在开头补上 `AT `
- **支持面板的拖动**,支持横向、纵向窗口大小调整和发送接收纵向窗口调整
- 提供数据统计和实时传输速率数据显示,快速清空等功能
- 提供 HEX 接收显示和 HEX 模式发送,并对不规范输入进行提醒
- `Ctrl Enter` 快速发送

    

.
├── des.v11.suo
├── ucom-master
│   ├── CHANGELOG.md
│   ├── LICENSE
│   ├── README.md
│   ├── Ucom
│   │   ├── Ucom.rc
│   │   ├── Ucom.vcxproj
│   │   ├── Ucom.vcxproj.filters
│   │   ├── res
│   │   │   ├── Icon.ico
│   │   │   ├── On.bmp
│   │   │   ├── Ucom.rc2
│   │   │   └── off.bmp
│   │   ├── resource.hm
│   │   ├── src
│   │   │   ├── core
│   │   │   │   ├── DeConsole.h
│   │   │   │   ├── Text.cpp
│   │   │   │   ├── Text.h
│   │   │   │   ├── UBase.h
│   │   │   │   ├── iSocket.cpp
│   │   │   │   ├── iSocket.h
│   │   │   │   ├── iUart.cpp
│   │   │   │   └── iUart.h
│   │   │   ├── dialog
│   │   │   │   ├── DataWatch.cpp
│   │   │   │   ├── DataWatch.h
│   │   │   │   ├── Encoder.cpp
│   │   │   │   ├── Encoder.h
│   │   │   │   ├── GraphDlg.cpp
│   │   │   │   ├── GraphDlg.h
│   │   │   │   ├── GraphFull.cpp
│   │   │   │   ├── GraphFull.h
│   │   │   │   ├── MultiSend.cpp
│   │   │   │   ├── MultiSend.h
│   │   │   │   ├── NetDlg.cpp
│   │   │   │   ├── NetDlg.h
│   │   │   │   ├── SendFile.cpp
│   │   │   │   ├── SendFile.h
│   │   │   │   ├── Splitter.cpp
│   │   │   │   ├── Splitter.h
│   │   │   │   ├── UartDlg.cpp
│   │   │   │   ├── UartDlg.h
│   │   │   │   ├── Ucom.cpp
│   │   │   │   ├── Ucom.h
│   │   │   │   ├── UcomDlg.cpp
│   │   │   │   ├── UcomDlg.h
│   │   │   │   └── UcomDlgBase.cpp
│   │   │   ├── lib
│   │   │   │   └── ChartCtrl
│   │   │   │       ├── ChartAxis.cpp
│   │   │   │       ├── ChartAxis.h
│   │   │   │       ├── ChartAxisLabel.cpp
│   │   │   │       ├── ChartAxisLabel.h
│   │   │   │       ├── ChartBalloonLabel.h
│   │   │   │       ├── ChartBalloonLabel.inl
│   │   │   │       ├── ChartBarSerie.cpp
│   │   │   │       ├── ChartBarSerie.h
│   │   │   │       ├── ChartCandlestickSerie.cpp
│   │   │   │       ├── ChartCandlestickSerie.h
│   │   │   │       ├── ChartCrossHairCursor.cpp
│   │   │   │       ├── ChartCrossHairCursor.h
│   │   │   │       ├── ChartCtrl.cpp
│   │   │   │       ├── ChartCtrl.h
│   │   │   │       ├── ChartCursor.cpp
│   │   │   │       ├── ChartCursor.h
│   │   │   │       ├── ChartDateTimeAxis.cpp
│   │   │   │       ├── ChartDateTimeAxis.h
│   │   │   │       ├── ChartDragLineCursor.cpp
│   │   │   │       ├── ChartDragLineCursor.h
│   │   │   │       ├── ChartFont.cpp
│   │   │   │       ├── ChartFont.h
│   │   │   │       ├── ChartGanttSerie.cpp
│   │   │   │       ├── ChartGanttSerie.h
│   │   │   │       ├── ChartGradient.cpp
│   │   │   │       ├── ChartGradient.h
│   │   │   │       ├── ChartGrid.cpp
│   │   │   │       ├── ChartGrid.h
│   │   │   │       ├── ChartLabel.h
│   │   │   │       ├── ChartLabel.inl
│   │   │   │       ├── ChartLegend.cpp
│   │   │   │       ├── ChartLegend.h
│   │   │   │       ├── ChartLineSerie.cpp
│   │   │   │       ├── ChartLineSerie.h
│   │   │   │       ├── ChartLogarithmicAxis.cpp
│   │   │   │       ├── ChartLogarithmicAxis.h
│   │   │   │       ├── ChartMouseListener.h
│   │   │   │       ├── ChartPointsArray.h
│   │   │   │       ├── ChartPointsArray.inl
│   │   │   │       ├── ChartPointsSerie.cpp
│   │   │   │       ├── ChartPointsSerie.h
│   │   │   │       ├── ChartScrollBar.cpp
│   │   │   │       ├── ChartScrollBar.h
│   │   │   │       ├── ChartSerie.cpp
│   │   │   │       ├── ChartSerie.h
│   │   │   │       ├── ChartSerieBase.h
│   │   │   │       ├── ChartSerieBase.inl
│   │   │   │       ├── ChartSeriesMouseListener.h
│   │   │   │       ├── ChartStandardAxis.cpp
│   │   │   │       ├── ChartStandardAxis.h
│   │   │   │       ├── ChartString.h
│   │   │   │       ├── ChartSurfaceSerie.cpp
│   │   │   │       ├── ChartSurfaceSerie.h
│   │   │   │       ├── ChartTitle.cpp
│   │   │   │       ├── ChartTitle.h
│   │   │   │       ├── ChartXYSerie.cpp
│   │   │   │       ├── ChartXYSerie.h
│   │   │   │       └── PointsOrdering.h
│   │   │   ├── resource.h
│   │   │   ├── stdafx.cpp
│   │   │   ├── stdafx.h
│   │   │   └── targetver.h
│   │   └── test
│   │       ├── requirements.txt
│   │       └── ucom.py
│   └── Ucom.sln
└── 基于 MFC 的网络调试工具.zip

9 directories, 109 files