USB 3.0 장치가 연결된 위치 찾기

USB 3.0 장치가 연결된 위치 찾기

직렬 입력을 읽고 싶습니다(예를 들어 여기)을 Linux 명령줄에 입력했지만 연결된 장치(Arduino) 경로를 찾을 수 없습니다.

장치를 식별할 수 있습니다.

# lsusb
Bus 005 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 003: ID 2341:0043 Arduino SA Uno R3 (CDC ACM)  <- this one
Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

하지만 dmesg는 관련된 이 메시지만 표시합니다.

# dmesg | grep usb
[15026545.556311] usb 4-1: new full-speed USB device number 3 using xhci-hcd
[15026545.697929] usb 4-1: ep 0x82 - rounding interval to 1024 microframes, ep desc says 2040 microframes

또한 나를 혼란스럽게 하는 것은 lspci가 장치를 표시하지 않는다는 것입니다.

# lspci
00:01.0 PCI bridge: Marvell Technology Group Ltd. Device 6820 (rev 04)
00:02.0 PCI bridge: Marvell Technology Group Ltd. Device 6820 (rev 04)
00:03.0 PCI bridge: Marvell Technology Group Ltd. Device 6820 (rev 04)
01:00.0 Network controller: Qualcomm Atheros AR9287 Wireless Network Adapter (PCI-Express) (rev 01)
02:00.0 Network controller: Qualcomm Atheros QCA986x/988x 802.11ac Wireless Network Adapter

/dev 디렉터리를 확인합니다.

# ls /dev/
autofs              kmsg                network_latency     ram4                ttyS12
btrfs-control       log                 network_throughput  ram5                ttyS13
bus                 mapper              null                ram6                ttyS14
console             mem                 port                ram7                ttyS15
cpu_dma_latency     memory_bandwidth    ppp                 ram8                ttyS2
full                mmcblk0             ptmx                ram9                ttyS3
fuse                mmcblk0boot0        pts                 random              ttyS4
hwrng               mmcblk0boot1        ram0                root                ttyS5
i2c-0               mmcblk0p1           ram1                rtc0                ttyS6
i2c-1               mmcblk0rpmb         ram10               shm                 ttyS7
i2c-2               mtd0                ram11               snd                 ttyS8
i2c-3               mtd0ro              ram12               spidev0.2           ttyS9
i2c-4               mtd1                ram13               tty                 ubi_ctrl
i2c-5               mtd1ro              ram14               ttyS0               urandom
i2c-6               mtdblock0           ram15               ttyS1               watchdog
i2c-7               mtdblock1           ram2                ttyS10              watchdog0
i2c-8               net                 ram3                ttyS11              zero

나는 다음과 같은 사실을 알 수 있었습니다.

  1. ttyUSB*/ttyACM* 경로가 생성되지 않았습니다.
  2. 장치의 경로는 /dev/bus/usb/004/003입니다.
  3. USB 3.0은 xhci-hcd를 사용해야 합니다.

더욱 혼란스러운 출력도 있습니다(iProduct 라인에 2(오류)가 표시됨).

# lsusb -v -s 004:003

Bus 004 Device 003: ID 2341:0043 Arduino SA Uno R3 (CDC ACM)
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            2 Communications
  bDeviceSubClass         0
  bDeviceProtocol         0
  bMaxPacketSize0         8
  idVendor           0x2341 Arduino SA
  idProduct          0x0043 Uno R3 (CDC ACM)
  bcdDevice            0.01
  iManufacturer           1 Arduino (www.arduino.cc)
  iProduct                2 (error)
  iSerial               220 8553130343135121F1A0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           62
    bNumInterfaces          2
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xc0
      Self Powered
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         2 Communications
      bInterfaceSubClass      2 Abstract (modem)
      bInterfaceProtocol      1 AT-commands (v.25ter)
      iInterface              0
      CDC Header:
        bcdCDC               10.01
      CDC ACM:
        bmCapabilities       0x06
          sends break
          line coding and serial state
      CDC Union:
        bMasterInterface        0
        bSlaveInterface         1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x82  EP 2 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0008  1x 8 bytes
        bInterval             255
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass        10 CDC Data
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x04  EP 4 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               1
Device Status:     0x0000
  (Bus Powered)

이는 이 환경에서 장치가 오작동하고 있음을 의미합니까? 이 장치의 추가 주소를 찾는 방법을 찾는 데 도움을 주실 수 있나요?

배경 정보: 제가 여기서 실행 중인 시스템은 TurriOS(OpenWrt 기반)입니다. 또한 Debian/Mint/Ubuntu/Manjaro를 테스트했는데 모두 문제 없이 USB를 연결할 수 있습니다(장치 자체가 손상되지 않음).

편집하다: USB 직렬 드라이버 설치 시 dmesg 관련 출력입니다.

[15707335.904584] usbserial: USB Serial support registered for carelink
[15707335.904622] usbserial: USB Serial support registered for zio
[15707335.904657] usbserial: USB Serial support registered for funsoft
[15707335.904686] usbserial: USB Serial support registered for flashloader
[15707335.904714] usbserial: USB Serial support registered for google
[15707335.904743] usbserial: USB Serial support registered for libtransistor
[15707335.904771] usbserial: USB Serial support registered for vivopay
[15707335.904802] usbserial: USB Serial support registered for moto_modem
[15707335.904832] usbserial: USB Serial support registered for motorola_tetra
[15707335.904863] usbserial: USB Serial support registered for novatel_gps
[15707335.904891] usbserial: USB Serial support registered for hp4x
[15707335.904917] usbserial: USB Serial support registered for suunto
[15707335.904944] usbserial: USB Serial support registered for siemens_mpi
[15707336.867539] usbcore: registered new interface driver ti_usb_3410_5052
[15707336.867582] usbserial: USB Serial support registered for TI USB 3410 1 port adapter
[15707336.867611] usbserial: USB Serial support registered for TI USB 5052 2 port adapter
[15721145.188760] usb 4-1: new full-speed USB device number 4 using xhci-hcd
[15721145.330360] usb 4-1: ep 0x82 - rounding interval to 1024 microframes, ep desc says 2040 microframes

편집 2: 구글링하다가 찾았어요스크립트그것은 나에게 다음이 필요하다고 명시적으로 주장합니다.

opkg install kmod-usb-acm

이러한 장치를 연결하려면

답변1

Arduino를 인식하고 직렬 포트 장치를 자동으로 생성하는 커널 모듈이 필요합니다.

OpenWrt 문서에 따르면:Arduino를 OpenWrt에 연결:

다음 패키지를 설치하십시오. (터미널을 사용하거나 LuCi 소프트웨어 페이지를 사용하는 경우 "opkg install"을 사용하십시오)

kmod-usb-직렬 kmod-usb-직렬-ark3116 kmod-usb-직렬-belkin kmod-usb-직렬-ch341 kmod-usb-직렬-cp210x kmod-usb-직렬-ftdi kmod-usb-직렬-mct kmod-usb -serial-mos7720 kmod-usb-serial-oti6858 kmod-usb-serial-pl2303 kmod-usb-serial-simple kmod-usb-serial-ti-usb

실제로 Arduino(또는 클론)에 어떤 USB-직렬 칩이 사용되는지 식별할 수 있다면 이들 중 하나만 필요할 수도 있습니다. 그럼에도 불구하고 많은 공간이 필요하지 않으므로 확실하지 않거나 게으른 경우 모두 설치할 수 있습니다.

의견에서 언급했듯이 해당 목록에 추가할 수도 있습니다 kmod-usb-acm.

관련 정보