PDA

View Full Version : How can I a RCM3200 to a RS232 connection of a GSM module?


chen_yaohao
05-29-2008, 10:05 AM
Hi

I'm a beginner at working with the Rabbit Microprocessor. Can anyone help me out with this: Which port should I use to connect the RCM3200 to a RS-232 connection of a GSM module?

Thank you.

bsprouse
05-29-2008, 03:57 PM
Any serial port on the Rabbit is capable of asynchronous serial communications. Chances are your GPS device needs the signals to be at RS-232 levels, which does require an RS-232 transceiver device. If you have the development kit, then there is an RS-232 transceiver built onto the prototyping board and serial ports B and C can be accessed at RS-232 levels on connector J5.

chen_yaohao
05-30-2008, 06:03 AM
Any serial port on the Rabbit is capable of asynchronous serial communications. Chances are your GPS device needs the signals to be at RS-232 levels, which does require an RS-232 transceiver device. If you have the development kit, then there is an RS-232 transceiver built onto the prototyping board and serial ports B and C can be accessed at RS-232 levels on connector J5.

Thanks Bill!

Can I use both port B and port C on connector J5 simultaneously? say use serial port B to transmit to & received from my GSM module, and use serial port C to transmit/receive using a radio transmitter/receiver.

bsprouse
05-30-2008, 06:39 PM
Yes you can, they are completely independent UART's that can be set to different baud rates, parity setting, etc. They both have independent buffers in the RS232 library which can be left at their default sizes, or adjusted independently.

chen_yaohao
05-31-2008, 11:21 AM
Yes you can, they are completely independent UART's that can be set to different baud rates, parity setting, etc. They both have independent buffers in the RS232 library which can be left at their default sizes, or adjusted independently.

Thank you!!