blob: ebc33cbfa36276ca5d4882ceb2e45af2748784a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
========================================================================
UHD - USRP1 Application Notes
========================================================================
.. contents:: Table of Contents
------------------------------------------------------------------------
Addressing the device
------------------------------------------------------------------------
A USRP1 can be identified though its serial number,
designated by the "serial" key in the device address.
The device address string representation for a USRP1 with serial 1234
::
serial=1234
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Change the USRP1's serial number
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
TODO
------------------------------------------------------------------------
OS Specific Notes
------------------------------------------------------------------------
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Setup Udev on Linux
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
On Linux, Udev handles USB plug and unplug events.
The following command creates a Udev rule for the USRP1
so that non-root users may access the device:
::
echo 'ACTION=="add", BUS=="usb", SYSFS{idVendor}=="fffe", SYSFS{idProduct}=="0002", MODE:="0666"' > tmpfile
sudo chown root.root tmpfile
sudo mv tmpfile /etc/udev/rules.d/10-usrp.rules
sudo udevadm control --reload-rules
|