Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cmake: Update coding style to use lowercase commands | Martin Braun | 2018-11-14 | 1 | -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: Add stub of RFNoC docs | Martin Braun | 2018-06-22 | 1 | -2/+2 |
| | |||||
* | python: Separating exposed Python data structures | Paul David | 2018-06-20 | 1 | -1/+1 |
| | | | | | | | | | - 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 | ||||
* | uhd: Update license headers | Martin Braun | 2018-02-19 | 1 | -0/+1 |
| | | | | | | | All copyright is now attributed to "Ettus Research, a National Instruments company". SPDX headers were also updated to latest version 3.0. | ||||
* | Move all license headers to SPDX format. | Martin Braun | 2017-12-22 | 1 | -12/+1 |
| | |||||
* | doxygen: Exclude RFNoC includes if ENABLE_RFNOC is off | Martin Braun | 2016-08-12 | 1 | -0/+4 |
| | |||||
* | Merge branch 'maint' | Martin Braun | 2016-05-06 | 1 | -0/+6 |
|\ | | | | | | | | | | | Conflicts: host/CMakeLists.txt host/lib/usrp/b200/b200_impl.cpp | ||||
| * | doxygen/cmake: Allow Doxygen to use shorter filenames | Martin Braun | 2016-05-05 | 1 | -0/+6 |
| | | | | | | | | | | This fixes cases where automatic builds fail on operating systems with character limits in paths, such as Windows. | ||||
* | | Merge branch 'maint' | Martin Braun | 2016-04-08 | 1 | -0/+7 |
|\| | |||||
| * | cmake: Enable use of dot for Doxygen | Martin Braun | 2016-04-07 | 1 | -0/+7 |
| | | |||||
* | | Added uhd_config_info utility | Nicholas Corgan | 2015-12-30 | 1 | -0/+1 |
| | | |||||
* | | cmake: Cleaned up output, removed duplicate OctoClock component registration | Martin Braun | 2015-11-17 | 1 | -3/+0 |
|/ | |||||
* | cmake: added variable to LIBUHD_REGISTER_COMPONENT macro to make required, ↵ | Nicholas Corgan | 2015-08-11 | 1 | -3/+3 |
| | | | | | | set LibUHD to required * If required component's dependencies aren't met, CMake will throw an error unless user specifically disables it | ||||
* | C API: feature additions, bugfixes | Nicholas Corgan | 2015-08-07 | 1 | -1/+3 |
| | | | | | | * Wrapped uhd::device_addrs_t, added find functions for multi_usrp, multi_usrp_clock * Replaced getopt with public domain implementation * Minor bugfixes | ||||
* | uhd: C API wrapper | Nicholas Corgan | 2015-08-06 | 1 | -1/+1 |
| | | | | | | | * multi_usrp, multi_usrp_clock, and associated classes accessible through C * Added Doxygen documentation explaining structure and API * Simple RX and TX streaming examples * Unit tests for different parts of C interface and C++ error conversion | ||||
* | Added uhd::image_loader class and uhd_image_loader utility | Nicholas Corgan | 2015-07-15 | 1 | -1/+2 |
| | | | | | | * Single class for loading firmware/FPGA images onto devices instead of multiple utilities * Loading functions are registered for each device, corresponding to their --args="type=foo" name * Deprecation warnings added to all product-specific image loading utilities | ||||
* | docs: Fixed FPGA manual auto-building | Martin Braun | 2015-06-29 | 1 | -1/+0 |
| | |||||
* | doc: Integrated install instructions into manual | Martin Braun | 2015-06-29 | 1 | -1/+1 |
| | |||||
* | docs: Removed stray CMake message | Martin Braun | 2015-04-30 | 1 | -1/+0 |
| | |||||
* | docs: Track doc updates on fpga-src | Martin Braun | 2015-04-30 | 1 | -1/+3 |
| | |||||
* | docs: Added FPGA manual | Martin Braun | 2015-04-27 | 1 | -1/+22 |
| | | | | | | | | The actual FPGA manual pages are in the FPGA repository. Only if the submodule is checked out will it build the manual pages. If the submodule is not checked out, it will create a link to the FPGA manual hosted online. | ||||
* | OctoClock firmware upgrade, added host driver | Nicholas Corgan | 2014-07-23 | 1 | -0/+1 |
| | | | | | | | | | | * OctoClock can communicate with UHD over Ethernet * Can read NMEA strings from GPSDO and send to host * Added multi_usrp_clock class for clock devices * uhd::device can now filter to return only USRP devices or clock devices * New OctoClock bootloader can accept firmware download over Ethernet * Added octoclock_burn_eeprom,octoclock_firmware_burner utilities * Added test_clock_synch example to show clock API | ||||
* | docs: Adjusted CMake so Doxygen builds either manual, API docs, or both | Martin Braun | 2014-04-09 | 1 | -11/+35 |
| | |||||
* | docs: Moved manual to Doxygen | Martin Braun | 2014-04-09 | 1 | -71/+8 |
| | |||||
* | Pushing the bulk of UHD-3.7.0 code. | Ben Hilburn | 2014-02-14 | 1 | -0/+1 |
| | |||||
* | Merging USRP X300 and X310 support!! | Ben Hilburn | 2014-02-04 | 1 | -1/+18 |
| | |||||
* | docs: added documentation for usage of the Jackson Labx LC_XO GPSDO, used on ↵ | Nicholas Corgan | 2013-10-10 | 1 | -0/+1 |
| | | | | USRP B2X0 devices | ||||
* | b200: skeleton documentation rst manual | Josh Blum | 2013-07-19 | 1 | -0/+1 |
| | |||||
* | Added CMake variables to customize builds to match Debian package configurations | Nicholas Corgan | 2013-05-10 | 1 | -6/+13 |
| | | | | | | * -DLIBUHD_PKG=ON installs with libuhd003 configuration * -DLIBUHDDEV_PKG=ON installs with libuhd-dev configuration * -DUHDHOST_PKG=ON installs with uhd-host configuration | ||||
* | docs: man pages compress fully | Nicholas Corgan | 2013-05-10 | 1 | -1/+1 |
| | |||||
* | UHD has man pages now | Nicholas Corgan | 2013-05-03 | 1 | -0/+46 |
| | | | | | * Linux installations will automatically install man pages * Moved usrp_n2xx_simple_net_burner and usrp2_card_burner into bin | ||||
* | docs: added comparative features list at top of each | Josh Blum | 2012-07-17 | 1 | -3/+3 |
| | |||||
* | uhd: added calibration usage app notes and renamed apps again | Josh Blum | 2011-11-15 | 1 | -0/+1 |
| | |||||
* | uhd: added some stream docs/app notes | Josh Blum | 2011-11-03 | 1 | -0/+1 |
| | |||||
* | Add GPSDO documentation | Nick Foster | 2011-06-17 | 1 | -0/+1 |
| | |||||
* | b100: added b100 host (squashed) | Josh Blum | 2011-06-14 | 1 | -0/+1 |
| | |||||
* | uhd: work on sync docs | Josh Blum | 2011-05-29 | 1 | -0/+1 |
| | |||||
* | uhd: setup cpack components for component based installers | Josh Blum | 2011-03-21 | 1 | -3/+3 |
| | |||||
* | usrp-e100: added app notes for fpga loading and reclocking | Josh Blum | 2011-02-01 | 1 | -0/+1 |
| | |||||
* | uhd: added docs on usrp2/n, removed empty n2xx doc page, misc | Josh Blum | 2011-01-24 | 1 | -1/+0 |
| | |||||
* | uhd: update copyright dates | Josh Blum | 2011-01-05 | 1 | -1/+1 |
| | |||||
* | uhd: removed REQUIRED from find package calls to libusb and docutils | Josh Blum | 2011-01-04 | 1 | -1/+1 |
| | |||||
* | uhd: create a find packages module for docutils, cleaned up some of the ↵ | Josh Blum | 2011-01-02 | 1 | -17/+4 |
| | | | | other find package stuff | ||||
* | cmake: changes to finding python interp, some other tweaks | Josh Blum | 2010-12-27 | 1 | -8/+6 |
| | |||||
* | uhd: implemented top-level component registry | Josh Blum | 2010-12-20 | 1 | -4/+12 |
| | | | | now docs, examples, utils, usb, are configurable components with dependencies | ||||
* | uhd: added macro to enable/disable components | Josh Blum | 2010-11-29 | 1 | -0/+3 |
| | | | | | | libuhd prints summary of components added newline prints before config checks | ||||
* | usrp2: added docs page for usrp2 that points to nxxx page | Josh Blum | 2010-11-29 | 1 | -0/+1 |
| | |||||
* | usrp-n: renamed docs and burner app, added burner app documentation | Josh Blum | 2010-11-11 | 1 | -1/+1 |
| | |||||
* | uhd: created docs for the device naming, command usage in usrp2 docs, ↵ | Josh Blum | 2010-11-05 | 1 | -0/+1 |
| | | | | removed redundant docs in usrp1 | ||||
* | uhd: transport docs for UDP and USB (moved from usrp docs) | Josh Blum | 2010-10-05 | 1 | -0/+1 |
| |