I am connecting a USB-serial device via USB.
The device shows up under lsusb:
Code: Select all
Bus 001 Device 004: ID 0403:8508 Future Technology Devices International, Ltd
Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp. SMSC9512/9514 Fast Ethernet Adapter
Bus 001 Device 002: ID 0424:9514 Standard Microsystems Corp.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
I cannot 'talk' to this device, because it does not appear under /dev as (I would expect) ttyUSB0
I had on initial install a keyboard and mouse connected which worked just fine.
I tried the following:
1. create the item in /etc/udev/rules.d/10-local.rules:
Code: Select all
ACTION=="add", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="8508", SYMLINK+="SPPRO"
Code: Select all
chgrp -h dialout /dev/SPPRO
2. tried adding the vendor and product IDs:
nano /sys/bus/usb-serial/drivers/ftdi_sio/new_id
0403 8508
The directory usb-serial does not exist.
3. created a node:
Code: Select all
mknod /dev/ttyUSB0 c 188 0
Code: Select all
crw-r--r-- 1 root dialout 188, 0 Sep 21 15:37 /dev/ttyUSB0
Code: Select all
T: Bus=01 Lev=02 Prnt=02 Port=02 Cnt=02 Dev#= 4 Spd=12 MxCh= 0
D: Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS= 8 #Cfgs= 1
P: Vendor=0403 ProdID=8508 Rev=06.00
S: Manufacturer=Selectronic
S: Product=Selectronic SP PRO
S: SerialNumber=0_139030-5.0
C: #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=0mA
I: If#= 0 Alt= 0 #EPs= 2 Cls=ff(vend.) Sub=ff Prot=ff Driver=(none)
usb-devices** reports "Spd=12" which, AIUI, implies USB 1.1
Any hints appreciated.