Filtering serial port io
Posted
by
mr odus
on Super User
See other posts from Super User
or by mr odus
Published on 2012-06-25T19:03:51Z
Indexed on
2012/06/25
21:18 UTC
Read the original article
Hit count: 257
I am currently working on a project where I communicate with hardware via a com port on its respective pc(win xp or 7) It is a fairly large project and sifting through the log file can be a bit of pain.
This is my current setup. I use putty to do the actual serial communication, and write it to a log file. Then using MinGW Msys I filter it using
tail -f "puttyLog" | grep -i "search term"
Is there a better way to do this? I mean specifically filtering the input in realtime.
Not that mine is terrible, but it still involves having to read from a log and sometimes there have been hangups where it will be delayed for a minute or 2. I have used software in the past with a main io window and then internal filter panels, but can no longer remember or find it.
© Super User or respective owner