Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Need a good serial port logging tool [closed]

I'm working on an embedded system and it uses one serial port for all it's logging purposes.

Is there a tool out there that allows you to filter lines into different windows (or remove them altogether) so that I can separate the output of the various logging sub-systems and remove spam messages that show up multiple times a second?

I'd prefer an open-source solution, but a highly-recommend closed product might do.

like image 544
Bill K Avatar asked Jun 18 '10 18:06

Bill K


1 Answers

Try Powershell. You obviously need to add filtering, but this should get you started

$port= new-Object System.IO.Ports.SerialPort COM3,9600,None,8,one
$port.Open()
While ($TRUE) {
$port.ReadLine()
}
like image 165
Mathias F Avatar answered Nov 11 '22 20:11

Mathias F