I’m logged in the 192.168.2.2 linux and it seems USB0 is supposed to be the tty of Arduino. However, there is no USB0 there. Thus, I was wondering, which tty is the Arduino? I was able to find HS0 and HSL1, but both of them doesn’t seem to be the answer for it. Can someone give me a hint on this issue?
Thanks for your answer. I haven´t seen this before, but looking at is it seems that the Arduino is connected to the Linux board through “/dev/ttyUSB0”, which I don´t have it here. The only different tty I found is:
-ttyHS0
-ttyHSL1
-ttyAT
Do you have an idea why I´m not able to find ttyUSB0 and what can be done to solve this?
root@swi-mdm9x15:~# dmesg | grep USB0
[ 9.413459] usb 1-1.1: FTDI USB Serial Device converter now attached to ttyUSB0
On WP77 Release 9.1
root@swi-mdm9x28-wp:~# dmesg | grep USB0
root@swi-mdm9x28-wp:~# modprobe ftdi_sio
root@swi-mdm9x28-wp:~# ls -l /dev/ttyUSB0
crw--w---- 1 root root 188, 0 Jan 6 00:12 /dev/ttyUSB0
root@swi-mdm9x28-wp:~# dmesg | grep USB0
[ 393.052155] usb 1-1.1: FTDI USB Serial Device converter now attached to ttyUSB0
So it is possible to get /dev/ttyUSB0, but for some reason you have to manually install the ftdi_sio kernel module for the device to be created. Here’s a snippet of output from dmesg on the wp77:
[ 1.850135] usb 1-1.1: new full-speed USB device number 3 using msm_hsic_host
[ 1.968353] usb 1-1.1: New USB device found, idVendor=0403, idProduct=6015
[ 1.968373] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.968385] usb 1-1.1: Product: FT230X Basic UART
[ 1.968396] usb 1-1.1: Manufacturer: FTDI
[ 1.968407] usb 1-1.1: SerialNumber: DJ00PT9I
I don’t know all the details of the modules.alias file format, but to me this looks like a match. I believe that a matching entry like this should cause the module to be loaded automatically. I’m not sure why that’s not happening.
root@swi-mdm9x28-wp:~# grep 'v0403p6015' /lib/modules/3.18.44/modules.alias
alias usb:v0403p6015d*dc*dsc*dp*ic*isc*ip*in* ftdi_sio
Thanks for your answer, I can reproduce most of what you just said. My device is a WP77XX (as a matter of fact, WP7702) and it does not show the dmesg of USB0. While the modprobe command does not give me an error, I´m still not able to find /dev/ttyUSB0. Bellow is the output: