USB hub 多usb接口重映射:udev 规则

来源:互联网 发布:telnet 端口打开 编辑:程序博客网 时间:2024/05/18 01:39
你在开发的过程中是否会出现 USB端口号会发生变化。 例如: 机器人底盘与雷达都是 ttyUSB* .其序号与接入的先后有关。 对于写好的launch每次修改对应接口是不是

很麻法,或者每次得先插入一个再插另外一个。才能保证ttyUSB0 ttyUSB1. 但是如果你重启系统,说不定还是有问题出现。。

        ==》 不如将端口重映射到新的固定的名字,并且设置其权限为可读。 这样不管你的先后插入,符合对应id的硬件端口自动的映射到新定义的名字。  


一. 单一的USB映射说明

  参见:http://blog.csdn.net/zyh821351004/article/details/41577105

lsusb 命令查看所有usb端口信息。 

[cpp] view plain copy
print?在CODE上查看代码片派生到我的代码片
  1. yhzhao@yhzhao:~$ lsusb   
  2. Bus 002 Device 002: ID 0bda:0411 Realtek Semiconductor Corp.   
  3. Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub  
  4. Bus 001 Device 004: ID 04f2:b48c Chicony Electronics Co., Ltd   
  5. Bus 001 Device 009: ID 046d:c31c Logitech, Inc. Keyboard K120  
  6. Bus 001 Device 010: ID 10c4:ea60 Cygnal Integrated Products, Inc. CP210x UART Bridge / myAVR mySmartUSB light  
  7. Bus 001 Device 005: ID 0bda:5411 Realtek Semiconductor Corp.   
  8. Bus 001 Device 008: ID 24ae:1100    
  9. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub  
udev的规则说明,可以参考博客说明:http://blog.csdn.net/cokewei/article/details/8281239

简单说明:

$kernel, %k:设备的内核设备名称,例如:sdacdrom

ID  10c4:ea60     表示usb设备的ID(这个ID由芯片制造商设置,可以唯一表示该设备)
    10c4    usb_device_descriptor.idVendor
    ea60    usb_device_descriptor.idProduct
 

依据这些信息,就可以简单的写udev规则了:rplidar.rules

sudo gedit /etc/udev/rules.d/rplidar.rules

[cpp] view plain copy
print?在CODE上查看代码片派生到我的代码片
  1. # set the udev rule , make the device_port be fixed by rplidar  
  2. #  
  3. KERNEL=="ttyUSB*", ATTRS{idVendor}=="10c4", ATTRS{idProduct}=="ea60", MODE:="0777", SYMLINK+="rplidar"  


创建生效后重新插拔USB。

用下面的命令就可以查看对应的映射结果了。

[cpp] view plain copy
print?在CODE上查看代码片派生到我的代码片
  1. yhzhao@yhzhao:~$ ls -l /dev |grep ttyUSB  
  2. lrwxrwxrwx  1 root   root             7 Apr 14 13:18 rplidar -> ttyUSB0  
  3. crwxrwxrwx  1 root   uucp      188,   0 Apr 14 13:18 ttyUSB0  
  4. yhzhao@yhzhao:~$   


二. USB hub的多端口映射:

同一个hub连接设备base和laser, 将其重映射换名称到  slamtec_base_  和  slamtec_laser_

[cpp] view plain copy
print?在CODE上查看代码片派生到我的代码片
  1. yhzhao@yhzhao:~$ lsusb   
  2. Bus 002 Device 002: ID 0bda:0411 Realtek Semiconductor Corp.   
  3. Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub  
  4. Bus 001 Device 004: ID 04f2:b48c Chicony Electronics Co., Ltd   
  5. Bus 001 Device 009: ID 046d:c31c Logitech, Inc. Keyboard K120  
  6. Bus 001 Device 011: ID 10c4:ea60 Cygnal Integrated Products, Inc. CP210x UART Bridge / myAVR mySmartUSB light  
  7. Bus 001 Device 012: ID 10c4:ea60 Cygnal Integrated Products, Inc. CP210x UART Bridge / myAVR mySmartUSB light  
  8. Bus 001 Device 005: ID 0bda:5411 Realtek Semiconductor Corp.   
  9. Bus 001 Device 008: ID 24ae:1100    
  10. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub  


可以看到hub的信息,同时hub上连接了两个串口转USB的设备,并且两者硬件使用的是一样的, 一种是依据设备的device配合一起分别定义udev规则,同上。

Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

现提供固定hub的每个端口的映射。

 udevadm info --attribute-walk --path=/sys/bus/usb-serial/devices/ttyUSB0

说明参见: http://askubuntu.com/questions/49910/how-to-distinguish-between-identical-usb-to-serial-adapters


可以找到hub端口的不同:

[cpp] view plain copy
print?在CODE上查看代码片派生到我的代码片
  1. yhzhao@yhzhao:~$ udevadm info --attribute-walk --path=/sys/bus/usb-serial/devices/ttyUSB1  
  2.   
  3. Udevadm info starts with the device specified by the devpath and then  
  4. walks up the chain of parent devices. It prints for every device  
  5. found, all possible attributes in the udev rules key format.  
  6. A rule to match, can be composed by the attributes of the device  
  7. and the attributes from one single parent device.  
  8.   
  9.   looking at device '/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.0/ttyUSB1':  
  10.     KERNEL=="ttyUSB1"  
  11.     SUBSYSTEM=="usb-serial"  
  12.     DRIVER=="cp210x"  
  13.     ATTR{port_number}=="0"  
  14.   
  15.   looking at parent device '/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.0':  
  16.     KERNELS=="1-2.2:1.0"  
  17.     SUBSYSTEMS=="usb"  
  18.     DRIVERS=="cp210x"  
  19.     ATTRS{bInterfaceClass}=="ff"  


[cpp] view plain copy
print?在CODE上查看代码片派生到我的代码片
  1. yhzhao@yhzhao:~$ udevadm info --attribute-walk --path=/sys/bus/usb-serial/devices/ttyUSB0  
  2.   
  3. Udevadm info starts with the device specified by the devpath and then  
  4. walks up the chain of parent devices. It prints for every device  
  5. found, all possible attributes in the udev rules key format.  
  6. A rule to match, can be composed by the attributes of the device  
  7. and the attributes from one single parent device.  
  8.   
  9.   looking at device '/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.1/1-2.1:1.0/ttyUSB0':  
  10.     KERNEL=="ttyUSB0"  
  11.     SUBSYSTEM=="usb-serial"  
  12.     DRIVER=="cp210x"  
  13.     ATTR{port_number}=="0"  
  14.   
  15.   looking at parent device '/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.1/1-2.1:1.0':  
  16.     KERNELS=="1-2.1:1.0"  
  17.     SUBSYSTEMS=="usb"  
  18.     DRIVERS=="cp210x"  
  19.     ATTRS{bInterfaceClass}=="ff"  



#参考   http://askubuntu.com/questions/49910/how-to-distinguish-between-identical-usb-to-serial-adapters

#lsusb  

#udevadm info --attribute-walk --path=/sys/bus/usb-serial/devices/ttyUSB0

[html] view plain copy
print?在CODE上查看代码片派生到我的代码片
  1.     SUBSYSTEMS=="usb"  
  2.     DRIVERS=="cp210x"  
  3.     ATTRS{bInterfaceClass}=="ff"  
  4.     ATTRS{bInterfaceSubClass}=="00"  
  5.     ATTRS{bInterfaceProtocol}=="00"  
  6.     ATTRS{bNumEndpoints}=="02"  
  7.     ATTRS{supports_autosuspend}=="1"  
  8.     ATTRS{bAlternateSetting}==" 0"  
  9.     ATTRS{bInterfaceNumber}=="00"  
  10.     ATTRS{interface}=="CP2102 USB to UART Bridge Controller"  
  11. KERNEL=="ttyUSB*", KERNELS=="1-2.1", MODE:="0777",SYMLINK+="slamtec_base_"  
  12. KERNEL=="ttyUSB*", KERNELS=="1-2.2", MODE:="0777",SYMLINK+="slamtec_laser_"  

重新拔插。可以看到:

ls -l  /dev   

[cpp] view plain copy
print?在CODE上查看代码片派生到我的代码片
  1. yhzhao@yhzhao:~$ ls -l /dev|grep ttyUSB  
  2. lrwxrwxrwx  1 root   root             7 Apr 14 13:45 rplidar -> ttyUSB1  
  3. lrwxrwxrwx  1 root   root             7 Apr 14 13:45 slamtec_base_ -> ttyUSB0  
  4. lrwxrwxrwx  1 root   root             7 Apr 14 13:45 slamtec_laser_ -> ttyUSB1  
  5. crwxrwxrwx  1 root   uucp      188,   0 Apr 14 13:45 ttyUSB0  
  6. crwxrwxrwx  1 root   dialout   188,   1 Apr 14 13:45 ttyUSB1  





参考:http://blog.csdn.net/zyh821351004/article/details/41577105

0 0
原创粉丝点击