2 serial UART on 1 Arduino ?

Hi,

this is my first arduino project,
im OK with controllers, ive worked with another platform.

i need to be able to read and write data to 2 devices with 1 arduino
this one needs 38400 bps http://store.diydrones.com/ProductDetails.asp?ProductCode=MT3329-02
and this one also 38400 http://store.diydrones.com/ProductDetails.asp?ProductCode=BR-Dronecell-01

i've thought of this mini pro
http://store.diydrones.com/ProductDetails.asp?ProductCode=BR-DEV-09220

but as it seems it has only one serial TX and RX...

any suggestions ?

(on the other platform every digital input can be used to read or output serial data
is it the same here, or i must use the dedicated serial port ?)

You can use NewSoftSerial, and use any pair of pins for a software serial port.

Or, you can get a Mega which has 4 hardware serial ports.

Check the docs, I'm not sure the soft serial will go that fast.

But yes, the Mega has 3 UARTS.

4 uarts !

NewSoftSerial works up to 115200 baud.

I guess I have just demonstrated the dangers of guessing :wink:

I shall go and look at new soft serial - thats most impressive.