|  | Commit message (Collapse) | Author | Age | Files | Lines | 
|---|
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| | 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!) | 
| | 
| 
| 
| 
| 
| 
| | Replaced with initialization lists.
Note: uhd::dict does not work with initializer lists without making
changes to said data structure. This commit has no functional changes,
so keeping the boost::assigns for uhd::dict. | 
| | 
| 
| 
| | Replace with std::this_thread::sleep_for(). | 
| | 
| 
| 
| | Reviewed-by: Derek Kozek <derek.kozel@ettus.com> | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| | This partially reverts b29e80cc. That commit fixed a bug with numerical
overflows, but also removed the ability to tune using the DAC,
effectively reducing the DSP tuning range.
This commit allows to tune within +/- 200 MHz using a combination of
both the DAC and the DSP tuning in the FPGA.
Reviewed-by: Derek Kozek <derek.kozel@ettus.com> | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| | To avoid the proliferation of additional include directories and
multiple ways of including project-local headers, we now default to
moving all headers that are used across UHD into the uhdlib/
subdirectory.
Some #include statements were also reordered as they were modified for
closer compliance with the coding guidelines.
Internal cpp source files should now include files like this:
    #include <uhdlib/rfnoc/ctrl_iface.hpp>
Reviewed-by: Ashish Chaudhari <ashish.chaudhari@ettus.com> | 
| | 
| 
| 
| 
| 
| 
| | All copyright is now attributed to "Ettus Research, a National
Instruments company".
SPDX headers were also updated to latest version 3.0. | 
| | |  | 
| | |  | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| | - uhd::usrp::mboard_eeprom_t is now simply a map. Its commit() method
  has no utility being a public API call, because the user never gets
  access to the appropriate I2C object (Minor API breakage)
- The central mboard_eeprom.cpp file was broken up and put into many
  smaller compilation units in every device's implementation folder.
- Renamed some of the constants (e.g. B000_* -> USRP1_*, N100_* ->
  N200_*)
- Removed the N000_* EEPROM code, because, well, you know, there's no
  such device | 
| | |  | 
| | |  | 
| | 
| 
| 
| 
| | USRP1 and USRP2 used tasks that relied on Boost thread interruption
mechanisms. These were replaced with explicit atomics. | 
| | |  | 
| | |  | 
| | 
| 
| 
| 
| | Note: This is the first commit that uses for-range, and range-based
for-loops are now usable for UHD development. | 
| | |  | 
| | |  | 
| | |  | 
| | 
| 
| 
| 
| 
| 
| 
| | types)
- Also removes all references to boost/cstdint.hpp and replaces it with
  stdint.h (The 'correct' replacement would be <cstdint>, but not all of our
  compilers support that). | 
| | 
| 
| 
| 
| | - A dboard_base class can have multiple frontends (subdevs) and
  the set_fe_connection needs to be able to distinguish between them | 
| | |  | 
| |\ |  | 
| | | 
| | 
| | 
| | 
| | 
| | | * nirio_driver_iface_win: labeled unused variable for MinGW builds
* b200_impl: fixed unreferenced variable warning
* n200_image_loader: fixed signed vs. unsigned comparison | 
| | | 
| | 
| | 
| | 
| | 
| | 
| | | - Made dboard_iface an interface! Removed PIMPL
- Added unit "BOTH" to dboard API and expanded GPIO API width to 32
- Removed gpio_debug_mux. No product ever used that
- Refactored gpio_atr cores to work with new dboard_iface | 
| | | 
| | 
| | 
| | 
| | 
| | | - Moved dboard iface initialization to dboard_manager
- Added a restricted register function. Restricted dboards
  don't expose their control iface in the property tree | 
| | | 
| | 
| | 
| | 
| | 
| | 
| | 
| | 
| | | - Added desired and coerced values and accessors to property
- Added support to register desired subscribers
- set APIs don't reallocate storage for a property value
- Renamed callback method registration APIs
- Registering 2 coercers or publishers for a property will throw
- Registering a coercer and a publisher for the same property will throw | 
| |/  
|   
|   
|   
|   
|   
|   
|   
|   
| | All device-specific CMake components are now registered in one place,
before the host/lib/ subdirs are sourced. This way, there are no
cyclic dependencies.
This solves the issue where ENABLE_X300=Off could disable USB, but
preserves the fix where ENABLE_X300=Off would still build some X300
codes. | 
| | |  | 
| | 
| 
| 
| 
| 
| | set LibUHD to required
* If required component's dependencies aren't met, CMake will throw an error unless user specifically disables it | 
| | 
| 
| 
| 
| | * On utility level, force user to use --args=type=foo
* In each loader, throw an error if args are ambiguous | 
| | 
| 
| 
| 
| 
| | * 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 | 
| | |  | 
| | |  | 
| | 
| 
| 
| 
| | This creates a wb_iface child class called timed_wb_iface, which
adds support for timed commands. | 
| | 
| 
| 
| 
| 
| 
| | * CMake now not applying C++ flags to C files
* GCC 4.4: anti-aliasing rules
* MSVC: narrowing, differences in subclass function parameters
* Clang: uninitialized variables | 
| | |  | 
| | 
| 
| 
| | * Point to usrp2_card_burner_gui.py instead of usrp2_card_burner.py | 
| | 
| 
| 
| | Also includes NI-USRP Windows Registry Key fixes. | 
| | 
| 
| 
| | This fixes RX DSP core 200 from tuning outside range and causing overflows. | 
| |\ |  | 
| | | |  | 
| | | 
| | 
| | 
| | 
| | | * Add "ignore-cal-file" to the uhd::device_addr_t arguments
* Added documentation for new feature | 
| | | |  | 
| |\| |  | 
| | | 
| | 
| | 
| | 
| | 
| | 
| | 
| | 
| | 
| | | - Added analog delay for radio clock
	- Added analog delay for DAC reference clocks
	- Removed resetting of clock control
	- Removed setting of reference clock and PPS to external sources during initialization
- Fixes for set_time_unknown_pps
	- Removed wait for PPS edge after setting time from GPSDO
	- Changed set_time_unknonw_pps to time out based on system time rather than device VITA time | 
| |\| 
| | 
| | 
| | 
| | | Conflicts:
	host/utils/usrp_burn_mb_eeprom.cpp | 
| | | 
| | 
| | 
| | | - Added polling for PPS time change after setting time from GPSDO. | 
| |/  
|   
|   
|   
|   
|   
|   
|   
|   
| | * 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 | 
| | 
| 
| 
| | incompatibility error messages |