├── Libs └── SubVi │ ├── 123.txt │ ├── AddMessage.vi │ ├── GetNowTime.vi │ ├── Hex2String.vi │ ├── SaveToFile.vi │ ├── String2Hex.vi │ └── ShowMessage.vi ├── APP ├── 串口助手.vi └── UartHelper.vi ├── #034 串口助手.aliases ├── #034 串口助手.lvlps ├── README.md └── #034 串口助手.lvproj /Libs/SubVi/123.txt: -------------------------------------------------------------------------------- 1 | 1234567890ABCDEF -------------------------------------------------------------------------------- /APP/串口助手.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yizhiping/Labview-UartHelper/HEAD/APP/串口助手.vi -------------------------------------------------------------------------------- /#034 串口助手.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yizhiping/Labview-UartHelper/HEAD/#034 串口助手.aliases -------------------------------------------------------------------------------- /#034 串口助手.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yizhiping/Labview-UartHelper/HEAD/#034 串口助手.lvlps -------------------------------------------------------------------------------- /APP/UartHelper.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yizhiping/Labview-UartHelper/HEAD/APP/UartHelper.vi -------------------------------------------------------------------------------- /Libs/SubVi/AddMessage.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yizhiping/Labview-UartHelper/HEAD/Libs/SubVi/AddMessage.vi -------------------------------------------------------------------------------- /Libs/SubVi/GetNowTime.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yizhiping/Labview-UartHelper/HEAD/Libs/SubVi/GetNowTime.vi -------------------------------------------------------------------------------- /Libs/SubVi/Hex2String.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yizhiping/Labview-UartHelper/HEAD/Libs/SubVi/Hex2String.vi -------------------------------------------------------------------------------- /Libs/SubVi/SaveToFile.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yizhiping/Labview-UartHelper/HEAD/Libs/SubVi/SaveToFile.vi -------------------------------------------------------------------------------- /Libs/SubVi/String2Hex.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yizhiping/Labview-UartHelper/HEAD/Libs/SubVi/String2Hex.vi -------------------------------------------------------------------------------- /Libs/SubVi/ShowMessage.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yizhiping/Labview-UartHelper/HEAD/Libs/SubVi/ShowMessage.vi -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Labview-串口调试助手 2 | 使用labview写一个自用的串口助手,尽可能的加入使用的功能. 3 | 4 | 2019-05-21 更新: 5 | 完成了基本的功能,可实现ASCII或HEX模式的发送与接收, 从文件发送, 或接收到文件的功能. 同时可进行自动循环发送功能. 6 | -------------------------------------------------------------------------------- /#034 串口助手.lvproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | true 5 | true 6 | false 7 | 0 8 | 我的电脑/VI服务器 9 | 我的电脑/VI服务器 10 | true 11 | true 12 | false 13 | 14 | true 15 | 16 | 17 | true 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | {80BC014A-FDBD-407F-99C4-7E9272FB789D} 34 | {B90687A5-477B-4622-8432-3E49061350BC} 35 | {C19ED440-B74E-4B22-B653-EB142EC30C84} 36 | 串口助手 37 | 0 38 | ChineseS 39 | true 40 | true 41 | true 42 | ../builds/NI_AB_PROJECTNAME/串口助手 43 | relativeToCommon 44 | true 45 | {6AA9134F-A711-4C4C-9FFA-1D1C26B47508} 46 | 串口助手.exe 47 | ../builds/NI_AB_PROJECTNAME/串口助手/串口助手.exe 48 | true 49 | App 50 | 支持目录 51 | ../builds/NI_AB_PROJECTNAME/串口助手/data 52 | 2 53 | {ACC1AAC5-B59F-4391-A443-44FC3AB9B58A} 54 | Container 55 | 0 56 | /我的电脑/APP/UartHelper.vi 57 | TopLevel 58 | VI 59 | 2 60 | 串口助手 61 | 1 62 | 串口助手 63 | 版权 2019 64 | 串口助手 65 | {50F1337B-1565-4F36-8BD0-85FBBA40FA1B} 66 | 串口助手.exe 67 | 68 | 69 | 70 | 71 | --------------------------------------------------------------------------------