USB 직렬 통신을 시뮬레이트하는 USB CDC-ACM 장치가 있습니다. CDC 통신 및 데이터 인터페이스는 각각 2-1:1.0(통신) 및 2-1:1.1(데이터) 인터페이스 설명자에 표시되며 드라이버가 cdc_acm
올바르게 로드됩니다.
/dev/ttyACMX
내 문제는 드라이버가 통신 인터페이스만 할당 cdc_acm
하고 데이터 인터페이스는 무시한다는 것입니다. 장치가 제대로 작동하지 못하게 하는 것 같습니다(ccTalk 프로토콜을 사용하는 GBA ST2 Bill Validator). 드라이버를 사용하면 Windows 8 이상에서 잘 작동합니다 usbser.sys
.
드라이버를 사용하면 cdc_acm
dmesg 및 lsusb 출력은 다음과 같습니다.
$ dmesg
[ 3484.982436] usb 2-1: new full-speed USB device number 4 using ohci-pci
[ 3485.251788] usb 2-1: New USB device found, idVendor=16f9, idProduct=0003
[ 3485.251792] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3485.251794] usb 2-1: Product: GBA ST2
[ 3485.251795] usb 2-1: Manufacturer: Astrosystems
[ 3485.251796] usb 2-1: SerialNumber: 06010010001
[ 3485.260103] cdc_acm 2-1:1.0: ttyACM0: USB ACM device
$ lsusb -t
/: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=ohci-pci/12p, 12M
|__ Port 1: Dev 4, If 0, Class=Communications, Driver=cdc_acm, 12M
|__ Port 1: Dev 4, If 1, Class=CDC Data, Driver=cdc_acm, 12M
/: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=ehci-pci/12p, 480M
보여주다:
- 2-1:1.0에 할당됨
/dev/ttyACM0
- 2-1:1.1 무시됨
usbserial
드라이버를 사용하여 데이터 인터페이스를 /dev/ttyUSBX
포트에 할당함으로써 다음을 발견했습니다.때때로일하다:
- 장치를 연결하고
cdc_acm
드라이버를 사용하도록 하십시오. 이렇게 하면 장치가 절전 모드를 종료하게 됩니다(장치 LED가 녹색으로 켜짐). usbserial
사용된 드라이버 로 전환하면modprobe -r cdc_acm && modprobe usbserial vendor=0x16f9 product=0x0003
Comm 인터페이스가 무시되고 데이터 인터페이스가 USB 포트에 할당됩니다.- 장치가 절전 모드로 돌아가면 다시 연결하고 1단계부터 다시 초기화해야 합니다.
usbserial
드라이버를 사용할 때:
- 2-1:1.0 무시됨
- 2-1:1.1에 할당됨
/dev/ttyUSBX
관련 dmesg 및 lsusb:
$ dmesg
[ 3688.481125] usbserial_generic 2-1:1.0: Generic device with no bulk out, not allowed.
[ 3688.481153] usbserial_generic: probe of 2-1:1.0 failed with error -5
[ 3688.481157] usbserial_generic 2-1:1.1: The "generic" usb-serial driver is only for testing and one-off prototypes.
[ 3688.481158] usbserial_generic 2-1:1.1: Tell [email protected] to add your device to a proper driver.
[ 3688.481160] usbserial_generic 2-1:1.1: generic converter detected
[ 3688.481219] usb 2-1: generic converter now attached to ttyUSB0
$ lsusb -t
/: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=ohci-pci/12p, 12M
|__ Port 1: Dev 4, If 0, Class=Communications, Driver=, 12M
|__ Port 1: Dev 4, If 1, Class=CDC Data, Driver=usbserial_generic, 12M
/: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=ehci-pci/12p, 480M
내 생각에는 장치가 CDC 통신 인터페이스를 사용하여 일종의 초기화를 수행한 다음 사용 중일 때 CDC 데이터 인터페이스를 사용하는 것 같습니다.
두 개의 인터페이스를 USB 및/또는 ACM 포트에 어떻게 연결합니까? 각 설명자를 USB 또는 ACM 포트에 명시적으로 연결하려면 자체 드라이버를 구현해야 합니까(또는 cdc_acm 드라이버를 확장해야 합니까?)
다음은 lsusb
2-1:1.0의 통신 인터페이스와 2-1:1.1의 데이터 인터페이스를 보여주는 샘플 -v 출력입니다.
Bus 002 Device 003: ID 16f9:0003
Device Descriptor:
bLength 18
bDescriptorType 1
bcdUSB 2.00
bDeviceClass 2 Communications
bDeviceSubClass 0
bDeviceProtocol 0
bMaxPacketSize0 64
idVendor 0x16f9
idProduct 0x0003
bcdDevice 14.06
iManufacturer 1 Astrosystems
iProduct 2 GBA ST2
iSerial 3 06010010001
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 4 GBA USB Serial Port
CDC Header:
bcdCDC 1.20
CDC ACM:
bmCapabilities 0x02
line coding and serial state
CDC Union:
bMasterInterface 0
bSlaveInterface 1
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x83 EP 3 IN
bmAttributes 3
Transfer Type Interrupt
Synch Type None
Usage Type Data
wMaxPacketSize 0x0040 1x 64 bytes
bInterval 50
Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber 1
bAlternateSetting 0
bNumEndpoints 2
bInterfaceClass 10 CDC Data
bInterfaceSubClass 0 Unused
bInterfaceProtocol 0
iInterface 4 GBA USB Serial Port
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x82 EP 2 IN
bmAttributes 2
Transfer Type Bulk
Synch Type None
Usage Type Data
wMaxPacketSize 0x0040 1x 64 bytes
bInterval 0
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x01 EP 1 OUT
bmAttributes 2
Transfer Type Bulk
Synch Type None
Usage Type Data
wMaxPacketSize 0x0040 1x 64 bytes
bInterval 0
Device Status: 0x0001
Self Powered