views:

174

answers:

1

Hi ,

I am using java comm library for serial port communication in my application. When I put some data on output stream, after sometime the same command is displayed on input stream of serial port. Do anybody has any idea how to echo off the serial port?

+2  A: 

It's most likely that the receiver sends back your data. If you have something connected, verify 'echo on' settings on the other side.

If it is the case, you could use this echo to constantly check the communication line.

Andreas_D
I got "echo off" command on remote device. Thanks
Surjya Narayana Padhi