|  | Commit message (Collapse) | Author | Age | Files | Lines | 
|---|
| | 
| 
| 
| 
| | Note: template_lvbitx.{cpp,hpp} need to be excluded from the list of
files that clang-format gets applied against. | 
| | 
| 
| 
| 
| 
| 
| 
| | The Octoclock host code would send uninitialized memory over the
network, which would be flagged by tools such as Valgrind. This patch
creates a factory function for OctoClock packets that initializes the
memory to zero, defaults the proto version to the OctoClock default, and
can provide a random sequence number if none is given. | 
| | |  | 
| | 
| 
| 
| 
| | These are all timeout loops, which now use
std::chrono::steady_clock::now() to check for timeout events. | 
| | 
| 
| 
| | Replace with std::this_thread::sleep_for(). | 
| | 
| 
| 
| 
| 
| 
| | All copyright is now attributed to "Ettus Research, a National
Instruments company".
SPDX headers were also updated to latest version 3.0. | 
| | |  | 
| | 
| 
| 
| 
| 
| 
| 
| | 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). | 
| | |  | 
| | |  | 
| | 
| 
| 
| 
| | - Corrected case when num_wraps overflowed
- Added limit to cache age | 
| | |  | 
| | 
| 
| 
| 
| 
| 
| 
| 
| | * host: consistency in setting packet sequence numbers
* firmware: populate packet length field when setting GPSDO cache
* both: logic for dealing with mismatching compatibility numbers
Reviewed-By: Michael West <michael.west@ettus.com>
Reviewed-By: Martin Braun <martin.braun@ettus.com> | 
| | |  | 
| | 
| 
| 
| 
| 
| | * Unreferenced exceptions in try-catch statements
* Incorrect function documentation
* Unlabelled unused variables | 
| | 
| 
| 
| 
| 
| 
| | * 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 | 
|  | * 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 |