--
--
Chromium OS Developers mailing list: chromiu...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-os-dev?hl=en
| "permissions": ["usb", | |
| {"usbDevices": [{"vendorId": 6353, "productId": 20490}]}] |
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 003: ID 8087:07dc Intel Corp.
Bus 001 Device 059: ID 5986:0655 Acer, Inc
Bus 001 Device 056: ID 072f:2200 Advanced Card Systems, Ltd ACR122U
Bus 001 Device 057: ID 0403:6001 Future Technology Devices International, Ltd FT232 USB-Serial (UART) IC
USB User [17:53:45] USB device added: path=/dev/bus/usb/001/051 vendor=1839 " ", product=8704 "CCID USB Reader", serial="--", guid=e82dcf19-c290-49f4-af23-2b30a59fa490
[17:48:21] USB device added: path=/dev/bus/usb/001/050 vendor=1027 "FTDI", product=24577 "FT232R USB UART", serial="AL02LCVV", guid=d0eea35a-1ea1-41d1-b465-26b6b897893
Trying to change the permission of usb rule file:mount: cannot remount /dev/dm-0 read-write, is write-protected
17:53:47] Permission broker failed to open the device: org.freedesktop.DBus.Error.Failed: permission_broker/permission_denied:Permission to open '/dev/bus/usb/001/050' denied
2017-01-11T18:05:21.497324+08:00 INFO kernel: [29695.362182] usb 1-1: USB disconnect, device number 50
2017-01-11T18:05:21.498428+08:00 INFO kernel: [29695.362435] ftdi_sio ttyUSB0: FTDI USB Serial Device converter now disconnected from ttyUSB0
2017-01-11T18:05:21.498451+08:00 INFO kernel: [29695.362482] ftdi_sio 1-1:1.0: device disconnected
Here is a bit more information on the issue we are having:Our use case is a FTDI usb - serial adapter. Working to build a chrome app and using the chrome.usb and chrome.serial APIs. The device is not allowing access see details:Device Details:lsusb command showing attached device details.chronos@localhost $ lsusbBus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 003: ID 8087:07dc Intel Corp.
Bus 001 Device 059: ID 5986:0655 Acer, Inc
Bus 001 Device 056: ID 072f:2200 Advanced Card Systems, Ltd ACR122U
Bus 001 Device 057: ID 0403:6001 Future Technology Devices International, Ltd FT232 USB-Serial (UART) ICchrome://device-log/USB User [17:53:45] USB device added: path=/dev/bus/usb/001/051 vendor=1839 " ", product=8704 "CCID USB Reader", serial="--", guid=e82dcf19-c290-49f4-af23-2b30a59fa490
[17:48:21] USB device added: path=/dev/bus/usb/001/050 vendor=1027 "FTDI", product=24577 "FT232R USB UART", serial="AL02LCVV", guid=d0eea35a-1ea1-41d1-b465-26b6b897893
Trying to change the permission of usb rule file:
localhost rules.d # sudo chmod u+w 50-vgem.rules
chmod: changing permissions of ‘50-vgem.rules’: Read-only file system
localhost rules.d # pwd
/etc/udev/rules.d
localhost rules.d # sudo mount -o remount,rw /dev/dm-0mount: cannot remount /dev/dm-0 read-write, is write-protected
Details Logs :
17:53:47] Permission broker failed to open the device: org.freedesktop.DBus.Error.Failed: permission_broker/permission_denied:Permission to open '/dev/bus/usb/001/050' denied
2017-01-11T18:05:21.497324+08:00 INFO kernel: [29695.362182] usb 1-1: USB disconnect, device number 50
2017-01-11T18:05:21.498428+08:00 INFO kernel: [29695.362435] ftdi_sio ttyUSB0: FTDI USB Serial Device converter now disconnected from ttyUSB0
2017-01-11T18:05:21.498451+08:00 INFO kernel: [29695.362482] ftdi_sio 1-1:1.0: device disconnected
Any ideas.....
On Friday, January 27, 2017 at 2:30:08 PM UTC-5, Chuck Williams wrote:Hello all,Seeking some help and direction. Using a Chrome app, we are successfully able to connect to a (OCID serial interfaced device), but there is an Angel Eye custom device based off of FTDI. getting this error--Error: Permission broker failed to open the device: org.freedesktop.DBus.Error.Failed: permission_broker/permission_denied:Permission to open '/dev/bus/usb/001/050'Any ideas or what other Chrome API can be used to connect and interact with this FTDI interfaced device from the context of the app?Regards
--