Weblog entry #3 for trakic
#3
Bash: Usb 1.1 vs 2.0 detection
Posted by trakic on Mon 23 Apr 2007 at 11:49
I took a good look at /sys/class/usb_device/ and i havn't yet found an (elegant) solution to determine speed on usb-mount-point, e.g.:
is_2_0()
{
echo "2.0"
}
is_1_1()
{
echo "1.1"
}
Any help would be greatly appritiated.
BR.Admir Trakic
is_2_0()
{
echo "2.0"
}
is_1_1()
{
echo "1.1"
}
Any help would be greatly appritiated.
BR.Admir Trakic
Comments on this Entry
Posted by Anonymous (213.73.xx.xx) on Fri 27 Apr 2007 at 12:02
Take a look at /proc/bus/usb/devices
[ Parent | Reply to this comment ]