begin quoting Paul G. Allen as of Thu, Feb 16, 2006 at 05:52:51PM -0800: [snip] > A virtual connection would be preferred. Kinda like using Ethereal or > tcpdump for network traffic. I need to see what bytes my software is > sending to the serial port, and what my software is receiving from the > serial port.
Named pipe, cat, and tee? > I know the target works because we have another application that can talk > to it. What I don't know is why my application won't work after a certain > point and I don't know if it's a timing issue or a bug in my code that's > just sending the wrong data. Subclass the stream classes to record off the bytes sent through them, a sort of java-level "tee" program. Streams are nice that way. -- _ |\_ \| -- [email protected] http://www.kernel-panic.org/cgi-bin/mailman/listinfo/kplug-list
