最初にSUでこの質問をしましたが、Ubuntuに特有のものなので、ここに移動します。
Ubuntuシステム(3.8.0-35)に 433Mhzトランシーバー をインストールしました。 USBからシリアルへの種類のデバイスであり、何らかの形で認識されています。
dmesg
出力:
[ 324.051498] usb 3-1: new full-speed USB device number 2 using xhci_hcd
[ 324.088070] usb 3-1: New USB device found, idVendor=10c4, idProduct=8668
[ 324.088081] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 324.088087] usb 3-1: Product: NETUSB1100 NEWMSG
[ 324.088093] usb 3-1: Manufacturer: HZWB
[ 324.102259] hid-generic 0003:10C4:8668.0002: hiddev0,hidraw1: USB HID v1.01 Device [HZWB NETUSB1100 NEWMSG ] on usb-0000:0e:00.0-1/input0
lsusb
出力:
Bus 003 Device 002: ID 10c4:8668 Cygnal Integrated Products, Inc.
( rfxcmd などから)アクセスしたいのですが、関連する/dev
パスを取得できません。 /dev
の内容は、プラグインしても変更されないため、確かに何かが欠落しています。
/dev/...
デバイスパスを作成するために、他にどのような手順を実行する必要がありますか-スクリプトで使用できますか?
EDITlekensteyn 's answer:tree /sys/bus/usb/drivers/
に続くmodprobe cp210x
の出力(関連性のない部分を削除)。再起動後、上記の3-1
が以下の3-2
になったことに注意してください。テストでそれを考慮しました。
/sys/bus/usb/drivers/
├── cp210x
│ ├── bind
│ ├── module -> ../../../../module/usbserial
│ ├── uevent
│ └── unbind
├── hub
│ ├── 1-0:1.0 -> ../../../../devices/pci0000:00/0000:00:1a.0/usb1/1-0:1.0
│ ├── 1-1:1.0 -> ../../../../devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1:1.0
│ ├── 2-0:1.0 -> ../../../../devices/pci0000:00/0000:00:1d.0/usb2/2-0:1.0
│ ├── 2-1:1.0 -> ../../../../devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0
│ ├── 3-0:1.0 -> ../../../../devices/pci0000:00/0000:00:1c.6/0000:0e:00.0/usb3/3-0:1.0
│ ├── 4-0:1.0 -> ../../../../devices/pci0000:00/0000:00:1c.6/0000:0e:00.0/usb4/4-0:1.0
│ ├── bind
│ ├── module -> ../../../../module/usbcore
│ ├── new_id
│ ├── remove_id
│ ├── uevent
│ └── unbind
├── usb
│ ├── 1-1 -> ../../../../devices/pci0000:00/0000:00:1a.0/usb1/1-1
│ ├── 1-1.2 -> ../../../../devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2
│ ├── 1-1.3 -> ../../../../devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3
│ ├── 1-1.4 -> ../../../../devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4
│ ├── 1-1.6 -> ../../../../devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6
│ ├── 2-1 -> ../../../../devices/pci0000:00/0000:00:1d.0/usb2/2-1
│ ├── 3-2 -> ../../../../devices/pci0000:00/0000:00:1c.6/0000:0e:00.0/usb3/3-2
│ ├── bind
│ ├── uevent
│ ├── unbind
│ ├── usb1 -> ../../../../devices/pci0000:00/0000:00:1a.0/usb1
│ ├── usb2 -> ../../../../devices/pci0000:00/0000:00:1d.0/usb2
│ ├── usb3 -> ../../../../devices/pci0000:00/0000:00:1c.6/0000:0e:00.0/usb3
│ └── usb4 -> ../../../../devices/pci0000:00/0000:00:1c.6/0000:0e:00.0/usb4
├── usbhid
│ ├── 1-1.2:1.0 -> ../../../../devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0
│ ├── 3-2:1.0 -> ../../../../devices/pci0000:00/0000:00:1c.6/0000:0e:00.0/usb3/3-2/3-2:1.0
│ ├── bind
│ ├── module -> ../../../../module/usbhid
│ ├── new_id
│ ├── remove_id
│ ├── uevent
│ └── unbind
├── usbserial
│ ├── bind
│ ├── module -> ../../../../module/usbserial
│ ├── uevent
│ └── unbind
├── usbserial_generic
│ ├── bind
│ ├── module -> ../../../../module/usbserial
│ ├── uevent
│ └── unbind
編集:cp210x.koの再コンパイルおよび再起動後にdmesg
を追加(新しいcp210x.koを使用)
[ 1.352918] usb 3-2: new full-speed USB device number 2 using xhci_hcd
[ 1.389854] usb 3-2: New USB device found, idVendor=10c4, idProduct=8668
[ 1.389865] usb 3-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.389871] usb 3-2: Product: NETUSB1100 NEWMSG
[ 1.389877] usb 3-2: Manufacturer: HZWB
[ 1.399869] usbcore: registered new interface driver usbhid
[ 1.399872] usbhid: USB HID core driver
[ 1.406870] hid-generic 0003:10C4:8668.0001: hiddev0,hidraw0: USB HID v1.01 Device [HZWB NETUSB1100 NEWMSG ] on usb-0000:0e:00.0-2/input0
手動のmodprobe cp210x
の後、dmesg
の余分な行。
[ 1313.312593] usbcore: registered new interface driver usbserial
[ 1313.312642] usbcore: registered new interface driver usbserial_generic
[ 1313.312674] usbserial: USB Serial support registered for generic
[ 1313.329536] usbcore: registered new interface driver cp210x
[ 1313.329575] usbserial: USB Serial support registered for cp210x
(end of file)
汎用HIDドライバーがデバイスを所有している場合、そのデバイス用のより具体的なドライバーが欠落していることが明らかになります。デバイス(10[Cc]4
および8668
)のカーネルツリー(3.13)をgrepしましたが、このドライバーが見つかりませんでした。最も近いものはcp210x
モジュールでしたが、8668
デバイスのエントリはありません。
デバイスを手動でcp210x
ドライバーにバインドしてみることができます(3-1
をdmesg
にリストされているアドレスに変更します):
Sudo modprobe cp210x
Sudo tee /sys/bus/usb/drivers/usbhid/unbind <<<3-1
Sudo tee /sys/bus/usb/drivers/cp210x/bind <<<3.1
Cp210xモジュールを編集して、製品IDをリストに追加してみてください。
apt-get source linux-headers-$(uname -r)
cd linux-lts-*/drivers/usb/serial
wget https://Gist.github.com/Lekensteyn/8544581/raw/cp210x-10c4-8668.patch
patch < cp210x-10c4-8668.patch
124MBのソースを取得したくない場合、必要なのはMakefileとcp210x.cファイルだけです。 3.8.0-35-genericに基づいて既にパッチが適用されたバージョンについては、 https://Gist.github.com/Lekensteyn/8544581 を参照してください。
次に、モジュールをビルドします(build-essential
を使用してapt-get
パッケージをインストールします(まだインストールしていない場合):
make -C /usr/src/linux-headers-$(uname -r) M=$PWD cp210x.ko
次に、古いモジュール(ある場合)をアンロードし、新しく構築されたモジュールをロードします(セキュアブートを有効にしていた場合は、無効にする必要があります)。
Sudo rmmod cp210x
Sudo insmod cp210x.ko
シェルスクリプトを使用してデバイスノードの識別を管理し、カスタムcp210xドライバーを使用します。また、CP210Xデバイスがホットプラグされたときにスクリプトを動的に実行するための適切なudevルールとスクリプトも提供します。
github.com/RishiGupta12/serial-communication-manager/tree/master/drivers/cp210x-silicon-labs