From a7d8e3b364acd911261f355b21848c2ad145e1a2 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Fri, 10 Apr 2015 19:08:26 -0700 Subject: Updated images package for N210 --- host/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'host') diff --git a/host/CMakeLists.txt b/host/CMakeLists.txt index 67b2446dd..1597e2c27 100644 --- a/host/CMakeLists.txt +++ b/host/CMakeLists.txt @@ -268,8 +268,8 @@ UHD_INSTALL(FILES #{{{IMG_SECTION # This section is written automatically by /images/create_imgs_package.py # Any manual changes in here will be overwritten. -SET(UHD_IMAGES_MD5SUM "164e052f2192f3652b03ee5976c9f53b") -SET(UHD_IMAGES_DOWNLOAD_SRC "uhd-images_003.008.002-release.zip") +SET(UHD_IMAGES_MD5SUM "b4171975928b9fd544ec5fe6fc1688c6") +SET(UHD_IMAGES_DOWNLOAD_SRC "uhd-images_003.008.002-40-gf23e7bcc.zip") #}}} ######################################################################## -- cgit v1.2.3 From 00c497b43ffe6d2f0b41163a8620e9ed94780231 Mon Sep 17 00:00:00 2001 From: Michael West Date: Tue, 14 Apr 2015 09:52:23 -0500 Subject: dboards: Fixed type deduction for older compilers on max287x code --- host/lib/usrp/common/max287x.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'host') diff --git a/host/lib/usrp/common/max287x.hpp b/host/lib/usrp/common/max287x.hpp index ee1dbb946..aa80600f7 100644 --- a/host/lib/usrp/common/max287x.hpp +++ b/host/lib/usrp/common/max287x.hpp @@ -263,7 +263,7 @@ private: class max2870 : public max287x { public: - max2870(write_fn func) : max287x(func) {} + max2870(write_fn func) : max287x(func) {} ~max2870() {} double set_frequency( double target_freq, @@ -276,13 +276,13 @@ public: max2870_regs_t::FEEDBACK_SELECT_DIVIDED : max2870_regs_t::FEEDBACK_SELECT_FUNDAMENTAL; - return max287x::set_frequency(target_freq, ref_freq, target_pfd_freq, is_int_n); + return max287x::set_frequency(target_freq, ref_freq, target_pfd_freq, is_int_n); } void commit(void) { // For MAX2870, we always need to write all registers. _write_all_regs = true; - max287x::commit(); + max287x::commit(); } }; @@ -292,7 +292,7 @@ public: class max2871 : public max287x { public: - max2871(write_fn func) : max287x(func) {} + max2871(write_fn func) : max287x(func) {} ~max2871() {}; void set_muxout_mode(muxout_mode_t mode) { @@ -305,7 +305,7 @@ public: _regs.muxout = max2871_regs_t::MUXOUT_SPI; break; default: - max287x::set_muxout_mode(mode); + max287x::set_muxout_mode(mode); } } @@ -316,7 +316,7 @@ public: bool is_int_n) { _regs.feedback_select = max2871_regs_t::FEEDBACK_SELECT_DIVIDED; - double freq = max287x::set_frequency(target_freq, ref_freq, target_pfd_freq, is_int_n); + double freq = max287x::set_frequency(target_freq, ref_freq, target_pfd_freq, is_int_n); // According to Maxim support, the following factors must be true to allow for synchronization if (_regs.r_counter_10_bit == 1 and -- cgit v1.2.3 From 740f2d7f5eeb2570dd53085a9c0ab3a5248bc3a6 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Tue, 14 Apr 2015 10:49:43 -0500 Subject: Updated Changelog and version number for 3.8.3 --- CHANGELOG | 12 ++++++++++++ fpga-src | 2 +- host/cmake/Modules/UHDVersion.cmake | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) (limited to 'host') diff --git a/CHANGELOG b/CHANGELOG index b4b373c1b..e6c5fe4f8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,18 @@ Change Log for Releases ============================== +## 003.008.003 +* UBX: Fixed phase synchronization issues + (Related changes: Change X300 daughterboard frequency, increase + N210 FIFO depth) +* Fixed many compiler warnings +* B200: Fixed timing issues, fixed tick rate issue, stabilized + operations at high clock rates +* X300: Improved phase alignment across devices +* CMake: Build fixes +* E300: Flow control fix + + ## 003.008.002 * CMake: Introducing named versions for dev branches, enable static libs, * E300: Docs updates, compat number bump, VCTCXO updates, diff --git a/fpga-src b/fpga-src index fc192fbc2..78eab419f 160000 --- a/fpga-src +++ b/fpga-src @@ -1 +1 @@ -Subproject commit fc192fbc2037076075f2eee09cc632447252b539 +Subproject commit 78eab419fdcdc18f4da8fd33f267af6c4d0494f6 diff --git a/host/cmake/Modules/UHDVersion.cmake b/host/cmake/Modules/UHDVersion.cmake index 014943b53..6ff6b863d 100644 --- a/host/cmake/Modules/UHDVersion.cmake +++ b/host/cmake/Modules/UHDVersion.cmake @@ -28,7 +28,7 @@ FIND_PACKAGE(Git QUIET) ######################################################################## SET(UHD_VERSION_MAJOR 003) SET(UHD_VERSION_MINOR 008) -SET(UHD_VERSION_PATCH 002) +SET(UHD_VERSION_PATCH 003) SET(UHD_VERSION_DEVEL FALSE) ######################################################################## -- cgit v1.2.3 From 2fe319d9790c7ec0bcdb9582c4fea95f3fd809b9 Mon Sep 17 00:00:00 2001 From: Ashish Chaudhari Date: Tue, 14 Apr 2015 09:00:30 -0700 Subject: Updated images package for 3.8.3 --- host/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'host') diff --git a/host/CMakeLists.txt b/host/CMakeLists.txt index 1597e2c27..9358b1156 100644 --- a/host/CMakeLists.txt +++ b/host/CMakeLists.txt @@ -268,8 +268,8 @@ UHD_INSTALL(FILES #{{{IMG_SECTION # This section is written automatically by /images/create_imgs_package.py # Any manual changes in here will be overwritten. -SET(UHD_IMAGES_MD5SUM "b4171975928b9fd544ec5fe6fc1688c6") -SET(UHD_IMAGES_DOWNLOAD_SRC "uhd-images_003.008.002-40-gf23e7bcc.zip") +SET(UHD_IMAGES_MD5SUM "8522b02386f5fe0bb51baa3ba0001ef0") +SET(UHD_IMAGES_DOWNLOAD_SRC "uhd-images_003.008.003-rc1.zip") #}}} ######################################################################## -- cgit v1.2.3