You are not logged in.
Pages: 1
Hello all,
I am working on an embedded solution that requires my computer to communicate with an arduino. I need to know how to get serial communications working over USB through the ftdi chip in the arduino. It appears that I have to re-compile the kernel but beyond that, I'm just guessing. Any tips?
Ben
Offline
Use Slitaz-4.0 : Linux slitaz 2.6.37-slitaz #2 SMP Wed Mar 7 10:36:39 CET 2012 i686 GNU/Linux
tux@slitaz:~$ zcat /proc/config.gz | grep -i ftdi_sio
# CONFIG_USB_SERIAL_FTDI_SIO is not set
Follow this guide to compile kernel : http://doc.slitaz.org/en:guides:kernel
Use menuconfig to enable ftdi_sio as module
Change:
# CONFIG_USB_SERIAL_FTDI_SIO is not set
to
CONFIG_USB_SERIAL_FTDI_SIO=m
Info on the driver:
http://cateee.net/lkddb/web-lkddb/USB_SERIAL_FTDI_SIO.html
Install new module and load it with modprobe.
Tutorial on verifying linux driver to arduino communication
http://www.ladyada.net/learn/arduino/lesson0-lin.html
Offline
Pages: 1
[ Generated in 0.020 seconds, 7 queries executed - Memory usage: 1.52 MiB (Peak: 1.77 MiB) ]