`
rewop998
  • 浏览: 37243 次
  • 来自: ...
社区版块
存档分类
最新评论

关于Linux下串口通讯0X0D自动转换为0X0A的解决方法

    博客分类:
  • Java
阅读更多

             

              /**************由于Linux会将0x0D认为是回车,所以以下作特别设置,请参考stty命令*********/
              //input setting
              String command = "stty -F "+comPort+" -icrnl";//translate carriage return to newline
              Runtime.getRuntime().exec(command);
              //output setting
              command = "stty -F "+comPort+" -onlcr";//translate newline to carriage return-newline
              Runtime.getRuntime().exec(command);
              /******************************************************************************/

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics