wiki:dacs/vcpdriver

Version 1 (modified by obina, 12 years ago) (diff)

--

USB接続のカウンタ制御 : CentOS6.2での動作について

ハードウェア

現象、問題点

  • CentOS 5 からは問題無く制御出来るが、CentOS 6 ではなぜか制御できない
  • DACS社のページにある通り、http://www.dacs-giken.co.jp/DA15Linux.pdf でチェック
    • カウンタをUSBで接続し、dmesg, lsmod で仮想COMドライバがロードされていることを確認。
      # dmesg
      
      usb 3-1: new full speed USB device using uhci_hcd and address 2
      usb 3-1: New USB device found, idVendor=0403, idProduct=6001
      usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
      usb 3-1: Product: DACS-2500 V1.0
      usb 3-1: Manufacturer: DACS
      usb 3-1: configuration #1 chosen from 1 choice
      usbcore: registered new interface driver usbserial
      USB Serial support registered for generic
      usbcore: registered new interface driver usbserial_generic
      usbserial: USB Serial Driver core
      USB Serial support registered for FTDI USB Serial Device
      ftdi_sio 3-1:1.0: FTDI USB Serial Device converter detected
      usb 3-1: Detected FT232BM
      usb 3-1: Number of endpoints 2
      usb 3-1: Endpoint 1 MaxPacketSize 64
      usb 3-1: Endpoint 2 MaxPacketSize 64
      usb 3-1: Setting MaxPacketSize 64
      usb 3-1: FTDI USB Serial Device converter now attached to ttyUSB0
      usbcore: registered new interface driver ftdi_sio
      ftdi_sio: v1.5.0:USB FTDI Serial Converters Driver
      
      # lsusb
      Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
      Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
      Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
      Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
      Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
      Bus 003 Device 002: ID 0403:6001 Future Technology Devices International, Ltd FT232 USB-Serial (UART) IC
      
      # lsmod
      Module                  Size  Used by
      ftdi_sio               32115  0 
      usbserial              31340  1 ftdi_sio
      ............
      
    • Teminal を2つ開き
      入力デバイスをリダイレクト
      # cat < /dev/ttyUSB0
      
      出力デバイスをリダイレクト
      # cat > /dev/ttyUSB0
      
      こちらのターミナルで
      W0000000
      と入力すると、もう1つの端末でR0000000と表示されるはず
      
  • この方法で、CentOS5では問題無く動作するが、CentOS6では何も表示されなかった

対処方法

  • マシンを再起動した後は、USBカウンタをつないでから
    # modprobe -r ftdi_sio
    

と入力する(rootになってから)。一度だけやればOK。それだけ。

雑感