accessing serial port of beagleboard

Hello friends,
                    I would like to send and receive data through the
serial port of beagleboard as a part of my project. I am aiming to
send and receive data wirelessly through a zigbee module.
(http://www.rhydolabz.com/index.php?
main_page=product_info&cPath=130_133&products_id=482)

Is it possible to do so? Please help.

Devanand T

I meant http://www.rhydolabz.com/index.php?main_page=product_info&cPath=130_133&products_id=482

might give you a look at the following link about serial port

http://www.vanemery.com/Linux/Serial/serial-console.html

http://stackoverflow.com/questions/5347962/how-to-connect-to-a-terminal-to-serial-usb-device-on-ubuntu-10-10

http://www.lvr.com/serport.htm

I hope to be helpful in your purposes,

Hi,

might give you a look at the following link about serial port

http://www.vanemery.com/Linux/Serial/serial-console.html

linux - How do I connect to a terminal to a serial-to-USB device on Ubuntu 10.10 (Maverick Meerkat)? - Stack Overflow

http://www.lvr.com/serport.htm

Also: http://tldp.org/HOWTO/Serial-Programming-HOWTO/

I have a sample program I wrote that works on ubuntu and gumstix, and
even on Windows using cygwin. It should work fine on the beagleboard
(or any other linux board for that matter):
http://svn.hylands.org/host/sertest/

It's basically just a really simple terminal emulator. Anything typed
in on stdin is sent to the serial port and anything recieved from the
serial port is sent to stdout.

Thank you…