Reputation:

Serial Port Spy for Windows Embedded CE

Is there a serial port "Spy" application available for Windows CE? By spy I mean an application that runs on Windows CE and can monitor the traffic going in and out of a serial device without modifying it.

Upvotes: 0

Views: 1588

Answers (1)

kgiannakakis
kgiannakakis

Reputation: 104178

This is a product that will do your job, but you need to pay for it. It basically works by creating virtual ports. You can do that yourself if you want to. Start from this article at Code Project. This will show you how you can create a serial port driver. You need to add code that will log ingoing/outcoming traffic while at the same time transferring data to/from a real port.

Upvotes: 1

Related Questions