aboutsummaryrefslogtreecommitdiffstats
path: root/host/docs
Commit message (Collapse)AuthorAgeFilesLines
* docs: n3xx: Add link to README for building custom filesystemsSugandha Gupta2019-05-301-37/+1
|
* docs: Improved Windows-related build instructionsAbdo-Gaber2019-05-211-13/+65
| | | | | | | | | | | - In general, some comments to clarify the dependencies installation and building process for windows users. - Add a comment to the required packages for MSCV. - Provide instructions to install Python requirements. - Add the instructions of NSIS installation. - Add comments to the version match between different installers. - Clarify the instructions of building process using Cmake - Add a subsection to show how a binary UHD installer can be obtained. - Correct the URL of Doxygen.
* docs: Add mention of DPDK support to X3x0Alex Williams2019-05-212-1/+9
|
* docs: Fix typo for dpdk-num-mbufs and add config file locationAlex Williams2019-03-201-3/+7
|
* docs: x300: Add notes on external reference frequenciesMartin Braun2019-03-052-2/+12
|
* doc: n3xx: fixed typo in image name (SD card build)Jörg Hofrichter2019-03-051-1/+1
| | | | | Image name to be provided to bitbake command are named 'developer-image' and 'deployment-image' i.e. with dash, not with underscore
* docs: Add note on manually disabling NEON extensionsMartin Braun2019-02-181-0/+11
|
* docs: fix broken link in DPDKBrent Stapleton2019-02-121-1/+1
| | | | The link to the MPM page in the DPDK docs was incorrectly named. This change links to the correct page name.
* docs: n3xx: fix Salt formattingBrent Stapleton2019-02-121-1/+2
| | | | Fixes issue where Doxygen doesn't recognize a block within N3XX's Salt subsection as code.
* docs: N3xx page shell formatting and bb imageMarcus Müller2019-02-111-2/+5
|
* Docs: Update DPDK dep commandnatetemple2019-02-061-1/+1
|
* docs: Document FPGA functional verification test for N320Alex Williams2019-01-311-0/+101
|
* docs: Add information about what dpdk_zero_copy is doingAlex Williams2019-01-291-2/+9
| | | | | | This adds some info about what is happening in the dpdk_zero_copy transport, especially the fact that there are threads spun off that take over CPUs.
* docs: Adding manual page for DPDKBrent Stapleton2019-01-293-1/+151
| | | | Co-authored-by: Alex Williams <alex.williams@ni.com>
* docs: Add manual page for the N320/N321Martin Braun2019-01-217-10/+187
| | | | | | | Since the N32* is part of the N3XX family, it shares a page with N300/N310. Co-authored-by: Mark Meserve <mark.meserve@ni.com>
* docs: Add comments for TwinRX and MCRMartin Braun2019-01-152-0/+25
| | | | | | The TwinRX dboards only support a master clock rate of 200 MHz, which is now emphasized in the manual. In addition, the meaning of tick rate, sampling rate, and master clock rate in the TwinRX context is explained.
* docs: Add manual page on compat numbersMartin Braun2019-01-022-0/+191
|
* docs: python: add documentation on GIL releaseBrent Stapleton2018-11-291-0/+23
| | | | | Adding documentation explaining where the Python API releases the Python GIL, and what that means for users.
* Docs: Adjust E310 functional verification testsmichael-west2018-11-261-10/+10
| | | | The sample rates and the interpolation/decimation limits didn't match.
* cmake: Update coding style to use lowercase commandsMartin Braun2018-11-141-76/+76
| | | | | | | | | | | | | | | | | Also updates our coding style file. Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code (with GNU compliant sed): cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done > convert.sed \ && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' \ '*CMakeLists.txt' | xargs -0 gsed -i -f convert.sed && rm convert.sed (Make sure the backslashes don't get mangled!)
* docs: n3xx & e320: Add more information on SaltMartin Braun2018-11-082-0/+83
|
* docs: x300: Add section on motherboard clockingMartin Braun2018-11-071-0/+50
|
* docs: n3xx: Improve sections on clock/time referencesMartin Braun2018-10-221-9/+22
| | | | | | - Added more detail on how to use White Rabbit - Highlight the options with external clock source (with or without external time source)
* e320: Added E320 docs page, reg map updatedSugandha Gupta2018-10-172-0/+707
|
* docs: Fix N210 MIMO Phase Alignment commandBrent Stapleton2018-10-121-1/+1
| | | | | | | The synchronization source for the N210 MIMO phase alignment needs to be set to anything other than 'pps' or 'auto' (which is actually 'pps'). 'default' skips the call to `set_time_unknown_pps`, which is the proper way to synchronize in this sitation.
* docs: Added TwinRX pageDerek Kozel2018-10-095-0/+91
|
* e320: Add R&D testing procedureSugandha Gupta2018-09-241-12/+120
|
* docs: Minor tweaks to the Python API manual pageMartin Braun2018-09-101-2/+4
|
* Docs: Updated niusrprio DriverMichael West2018-08-291-36/+19
|
* uhd: Remove usage of time_t (except when required)Martin Braun2018-08-201-1/+1
| | | | | | | | | | The C/C++ standards don't define what time_t is, only that it is arithmetic (and real for C11, and integral for C++). It should not be used in portable software and is only used as the return value for some libc calls. A common definition for time_t is int64_t, so we'll switch to that permanently in our own APIs. System APIs will of course stick with time_t.
* docs: b200: Add info on how to modify FPGA and access user settingsMartin Braun2018-08-161-0/+26
|
* x300: Enable clock_source and time_source device argsMartin Braun2018-08-101-2/+13
| | | | | | | | | | You can now change the time/clock source default through device args: auto usrp = uhd::usrp::multi_usrp::make( "type=x300,clock_source=external,time_source=external"); This also enables the use of config files for the clock/time source implicitly.
* doc: add clock_source and time_source to n3xx argument list. fix WR ↵Daniel Jepson2018-08-031-2/+5
| | | | clock_source call
* docs: n3xx: Add section on building fs/SD imagesMartin Braun2018-08-011-0/+47
| | | | | Adding section in the manual on how to build filesystems and SD card images.
* docs: Fix Doxygen warningsMartin Braun2018-07-313-5/+5
|
* docs: Python API: Add comment on building on WindowsMartin Braun2018-07-191-0/+10
|
* docs: Add page for the C APIMartin Braun2018-07-192-0/+25
|
* docs: Add page for the Python APIMartin Braun2018-07-193-1/+87
|
* mpm: n3xx: Init device on bootMartin Braun2018-07-181-0/+42
| | | | | Specify skip_boot_init=1 to not init during boot. This will increase boot time for an N310, typically by around 15 seconds.
* mpm: mg: Adding fast-reinit modeMartin Braun2018-07-171-0/+24
| | | | | | | | | | When a device is re-initialized without any changes (e.g., master_clock_rate, ref_clock_freq) then we can skip the initialization sequence and move on. This shaves a significant amount of time from the init sequence. Fast re-init can be overridden by providing the `force_reinit=1` device arg.
* Update ISE/Vivado versions in images.doxRobin Coxe2018-06-261-4/+5
|
* Docs: Add stub of RFNoC docsMartin Braun2018-06-225-3/+26
|
* python: Separating exposed Python data structuresPaul David2018-06-202-2/+2
| | | | | | | | | - Separating exposed Python data structures into logical sections - Exposes all of the multi_usrp API - Adds a layer of Python for documentation and adding helper methods - Adds improvements and fixes to the MultiUSRP object - Includes additional exposed data structures (like time_spec_t, etc.) - Add code to release the Python GIL during long C++ calls
* Docs: x300 Functional Verification ProcedureVidush2018-06-151-0/+15
|
* Docs: Update FPGA Functional Testing ProcedureVidush2018-06-131-9/+7
|
* docs: Improve section on MPMMartin Braun2018-06-091-5/+97
|
* tools: Add a script for automated testing of FPGAFUNCVERIFMartin Braun2018-06-041-9/+74
|
* docs: test procedures: Add FPGAFUNCVERIF-N3x0-v1Martin Braun2018-06-041-1/+52
|
* Docs: Fix E310 Devtest ProcedureVidush2018-06-041-3/+2
|
* Docs: Update Testing ProcedureVidush2018-06-041-10/+10
| | | | Fix typos and reflect updated procedure used with v3.12.0.0-rc1.