How to connect Android devices to HyperTerminal?

I would like to know how to connect Android devices to HyperTerminal?

I am not able to find the port on which my Android mobile connects and which connection mode to use. On my HTC Wildfire S I have various connection modes like 'Internet pass through','charge only','disk drive', etc.

2

2 Answers

I'm afraid Android doesn't expose its 'modem' via a serial port.

What you probably need is some kind of application, that will expose desired functions through either XML-RPC, plain HTTP or some kind of IP based protocol.

Some of those apps could be AirDroid (here I'm not sure how easy it is to control this from a script), RPC - Base + XMPP Channel, or SMS Gateway from APK Soft.

Or you can write your own app for Android and emulate a modem over TCP... (I don't have any experience in this, but expect it to be fairly easy).

2

There is a review of this in the XDA forum thread:

How to talk to the Modem with AT commands.

That thread show you how to send AT commands (ATC) with a remote terminal (USB connected to you PC), but it has not yet solved the problem of how to use a local (phone) terminal to talk to the phone modem. This is dependent on both the modem chip set used in your phone and how the phone is set up when connected to a USB port. There are usually some kind of engineering menu (AKA secret code) that you can dial to get the phone to act like a modem or PDA.

BTW. You need a terminal application/program to do any talking to the modem (remember, it's a two-way communication). So that's why you need a rooted device, since the rootkit usually come with BusyBox (that includes the microcom terminal program). Otherwise, you have to write your own program.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like