views:

2798

answers:

3

I have an application on a Windows CE device that tries to receive data over a serial port. This isn't working and now I'm looking for some simple application to run on that device that'd let me check if there is any data coming in. Is there something like HyperTerminal that let's me monitor a serial port on mobile devices?

Best would probably be an application where the source code is available, so that I can adjust it to the specifics of the device I'd like to run it on (some commonly used system DLLs are not available).

+1  A: 

In Windows CE you communicate with a serial port almost the same way as you do in classic Win32. The only difference is that overlapped I/O is not supported.

So I guess it would be easy to adapt an existing C++ library to your needs. There are many articles available in Code Project. This is one example article.

kgiannakakis
+1  A: 

Try to check this out. If I'm not mistaken I used this to check COM ports functionality (I was too lazy to download it all again and check whether this is exactly the version I used...).
It is a basic application that sends and receives data over a chosen COM port. Basic, but you can expand the functionality.

Shaihi
+1  A: 

When I was doing a lot of serial comms based work on windows mobile I found ZTerm for PPC an invaluable tool. It supports a direct serial connection so you can use it to talk to serial ports, modems etc. And also supports socket based comms so you can use it as telnet to talk to remote systems.

Matt