<tfoot id='vGM7F'></tfoot><legend id='vGM7F'><style id='vGM7F'><dir id='vGM7F'><q id='vGM7F'></q></dir></style></legend>
    1. <small id='vGM7F'></small><noframes id='vGM7F'>

        <bdo id='vGM7F'></bdo><ul id='vGM7F'></ul>
      <i id='vGM7F'><tr id='vGM7F'><dt id='vGM7F'><q id='vGM7F'><span id='vGM7F'><b id='vGM7F'><form id='vGM7F'><ins id='vGM7F'></ins><ul id='vGM7F'></ul><sub id='vGM7F'></sub></form><legend id='vGM7F'></legend><bdo id='vGM7F'><pre id='vGM7F'><center id='vGM7F'></center></pre></bdo></b><th id='vGM7F'></th></span></q></dt></tr></i><div id='vGM7F'><tfoot id='vGM7F'></tfoot><dl id='vGM7F'><fieldset id='vGM7F'></fieldset></dl></div>
    2. 通过串行通信 java 发送数据包

      时间:2024-08-24

      • <i id='lpvwP'><tr id='lpvwP'><dt id='lpvwP'><q id='lpvwP'><span id='lpvwP'><b id='lpvwP'><form id='lpvwP'><ins id='lpvwP'></ins><ul id='lpvwP'></ul><sub id='lpvwP'></sub></form><legend id='lpvwP'></legend><bdo id='lpvwP'><pre id='lpvwP'><center id='lpvwP'></center></pre></bdo></b><th id='lpvwP'></th></span></q></dt></tr></i><div id='lpvwP'><tfoot id='lpvwP'></tfoot><dl id='lpvwP'><fieldset id='lpvwP'></fieldset></dl></div>
        <tfoot id='lpvwP'></tfoot>

            <bdo id='lpvwP'></bdo><ul id='lpvwP'></ul>

                <tbody id='lpvwP'></tbody>
              1. <small id='lpvwP'></small><noframes id='lpvwP'>

                <legend id='lpvwP'><style id='lpvwP'><dir id='lpvwP'><q id='lpvwP'></q></dir></style></legend>
                本文介绍了通过串行通信 java 发送数据包的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我正在编写一个通过串行端口与外部设备通信的 java 应用程序.

                I'm writing a java application that communicates with an external device over a serial port.

                我想我可以连接到设备 &发送/接收数据正常(我目前无法访问设备..我正在使用模拟器)

                I think I can connect to the device & send/receive data ok (I don't have access to the device at the moment..I'm using an emulator)

                我只是需要一些关于如何格式化我发送的数据的建议.

                I just need some advice on how I should format the data I'm sending.

                规范说它应该以字节格式发送.所以如果我有类似以下数据包的东西要发送

                The spec says it should be sent in byte format..So if I have something like the following packet to send

                AA|0D|07|09|0A|0B|03|01|02|03|04|CSM|CSM

                AA|0D|07|09|0A|0B|03|01|02|03|04|CSM|CSM

                这是我应该做的事情吗

                outputStream.write((byte)0xAA);
                outputStream.write((byte)0x0D);
                outputStream.write((byte)0x07);
                

                ...还是我走远了?

                如果这真的很基本,我很抱歉..我以前从未处理过任何此类东西 &几天之内我将无法使用该设备.

                I'm sorry if this is really basic..I've never dealt with any of this type stuff before & I won't be getting my hands on the device for a few days.

                推荐答案

                你应该看看Serial Line IP"(SLIP) 并发送与 IP 不同的数据包类型,请查看 SLIPMUX,后者只是 SLIP 的向后兼容扩展.

                You should take a look into "Serial Line IP" (SLIP) and to send different packet types than IP have a look at SLIPMUX, the latter is just a backward compatible extension to SLIP.

                参见:

                • 滑动:https://www.rfc-editor.org/rfc/rfc1055
                • SlipMux:https://datatracker.ietf.org/doc/html/draft-bormann-t2trg-slipmux-00

                两者都很容易实现.即使不是 Java,我也喜欢链接我最近写的一个实现:https://github.com/Lobaro/slip

                Both are very easy to implement. Even it's not Java I like to link one Implementation I recently wrote: https://github.com/Lobaro/slip

                希望对你有帮助.

                这篇关于通过串行通信 java 发送数据包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:CommPortIdentifier.getPortIdentifiers 为空 下一篇:在ubuntu上用java进行串口识别

                相关文章

                  <bdo id='5gTKM'></bdo><ul id='5gTKM'></ul>

                  <i id='5gTKM'><tr id='5gTKM'><dt id='5gTKM'><q id='5gTKM'><span id='5gTKM'><b id='5gTKM'><form id='5gTKM'><ins id='5gTKM'></ins><ul id='5gTKM'></ul><sub id='5gTKM'></sub></form><legend id='5gTKM'></legend><bdo id='5gTKM'><pre id='5gTKM'><center id='5gTKM'></center></pre></bdo></b><th id='5gTKM'></th></span></q></dt></tr></i><div id='5gTKM'><tfoot id='5gTKM'></tfoot><dl id='5gTKM'><fieldset id='5gTKM'></fieldset></dl></div>

                  1. <small id='5gTKM'></small><noframes id='5gTKM'>

                    <tfoot id='5gTKM'></tfoot><legend id='5gTKM'><style id='5gTKM'><dir id='5gTKM'><q id='5gTKM'></q></dir></style></legend>