The ATmega32u4 microcontroller, used on the Arduino Yun, has a serial port (PIN 0 and 1) connected internally to the AR9331 chip that runs the Linux distribution Linino:
As the Arduino Leonardo, also Arduino Yun emulates a serial port through an USB connection (micro USB connector). Sometimes it’s needed to have a physical serial port, for example to connect todevices that can’t act as USB host and therefore accept an USB connection (consoles of network equipments…).
Yun has also an USB host port, which can accept USB peripherals like keyboards, webcams… and also USB->serial adapters:
Choose an adapter based on one of the FTDI ICs, for example the famous FT232R:
Connect to the Yun via SSH and install the appropriate kernel module:
opkg install kmod-usb-serial-ftdi
If you now connect the adapter and display the system messages (using the dmesg command) you can read that the adapter is correctly detected and a new serial port is added (named ttyUSB0 in the screenshot below):
For more details ,please refer to original post
http://www.lucadentella.it/en/2013/12/02/yun-aggiungiamo-una-porta-seriale/
Leave a Reply
You must be logged in to post a comment.