aboutsummaryrefslogtreecommitdiffstats
path: root/host/docs
diff options
context:
space:
mode:
authorDaniel Jepson <daniel.jepson@ni.com>2018-08-03 10:13:05 -0500
committerMartin Braun <martin.braun@ettus.com>2018-08-03 08:49:37 -0700
commit74fd6c9a81a066eedfd5b9f85160375d3aac552c (patch)
treec10fa54cc5b140a399957f0775d4d93855aa8aaa /host/docs
parent1f9a58cd0a79789959564318cc55897b43377464 (diff)
downloaduhd-74fd6c9a81a066eedfd5b9f85160375d3aac552c.tar.gz
uhd-74fd6c9a81a066eedfd5b9f85160375d3aac552c.tar.bz2
uhd-74fd6c9a81a066eedfd5b9f85160375d3aac552c.zip
doc: add clock_source and time_source to n3xx argument list. fix WR clock_source call
Diffstat (limited to 'host/docs')
-rw-r--r--host/docs/usrp_n3xx.dox7
1 files changed, 5 insertions, 2 deletions
diff --git a/host/docs/usrp_n3xx.dox b/host/docs/usrp_n3xx.dox
index fedc5124c..417b79466 100644
--- a/host/docs/usrp_n3xx.dox
+++ b/host/docs/usrp_n3xx.dox
@@ -386,6 +386,8 @@ For a list of which arguments can be passed into make(), see Section
skip_ddc | Ignore DDC block. Connect Rx streamers straight into radio. | All N3xx | skip_ddc=1
skip_duc | Ignore DUC block. Connect Rx streamers or DRAM straight into radio. | All N3xx | skip_duc=1
skip_init | Skip the initialization process for the device. | All N3xx | skip_init=1
+ time_source | Specify the time (PPS) source. | All N3xx | time_source=internal
+ clock_source | Specify the reference clock source. | All N3xx | clock_source=internal
ref_clk_freq | Specify the external reference clock frequency, default is 10 MHz. | N310 | ref_clk_freq=20e6
init_cals | Specify the bitmask for initial calibrations of the RFIC. | N310 | init_cals=BASIC
init_cals_timeout | Timeout for initial calibrations in milliseconds. | N310 | init_cals_timeout=45000
@@ -593,10 +595,11 @@ Then, you can install the WX (or WA) image using `uhd_image_loader`:
$ uhd_image_loader --args type=n3xx,addr=ni-n3xx-<DEVICE_SERIAL> --fpga-path=”<UHD_INSTALL_DIRECTORY>/share/uhd/images/usrp_n310_fpga_WX.bit
-Once the image is loaded, select `sfp0` as the clock and time source:
+Once the image is loaded, select `internal` as the clock source and
+`sfp0` as the time source:
```cpp
-auto usrp = uhd::usrp::multi_usrp::make("type=n3xx,clock_source=sfp0,time_source=sfp0");
+auto usrp = uhd::usrp::multi_usrp::make("type=n3xx,clock_source=internal,time_source=sfp0");
```
For more information, refer to the [White Rabbit Homepage](https://www.ohwr.org/projects/white-rabbit),