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.
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()
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With