diff options
author | Martin Braun <martin.braun@ettus.com> | 2017-01-12 14:52:31 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-01-12 15:15:56 -0800 |
commit | d9edfc57a7f52269242e8f21563a4f03115c094d (patch) | |
tree | b1cfc3c0c3142add8a33a42be7db9722a249b96d | |
parent | a12fc913a078c6c2cf16787e64f4f24d448ff2f6 (diff) | |
download | uhd-d9edfc57a7f52269242e8f21563a4f03115c094d.tar.gz uhd-d9edfc57a7f52269242e8f21563a4f03115c094d.tar.bz2 uhd-d9edfc57a7f52269242e8f21563a4f03115c094d.zip |
Preparing branch for 3.10.1.1 release.
- Updated version string
- Updated fpga-src submodule
- Updated CHANGELOG
- Updated images package
-rw-r--r-- | CHANGELOG | 23 | ||||
m--------- | fpga-src | 0 | ||||
-rw-r--r-- | host/CMakeLists.txt | 4 | ||||
-rw-r--r-- | host/cmake/Modules/UHDVersion.cmake | 2 |
4 files changed, 26 insertions, 3 deletions
@@ -1,6 +1,29 @@ Change Log for Releases ============================== + +## 003.010.002.000 + +- Docs: The protocol for Gen-3 devices is now consistently referred to as CHDR. +- X300: Fixed EEPROM corruption bug (happened when two processes would access + find routines on the same device at the same time). Improved initialization + time. CE clock is now 214 MHz. Fixed channel list generation. Find routines + now more lenient in case one devices fails (others can still be found then). + Improve PCIe behaviour. Fix timed commands for non-TwinRX dboards. Improve + AXI Interconnect (faster, improved build timing). +- N231: Use second_addr (like X300). +- C API: Added UHD_VERSION macro. Fixed online rate change. +- Utils: Minor fixes to uhd_images_downloader. +- Build/CMake: Fixed some Py3k build issues. Fixed many compiler warnings. Allow + to specify package names. +- RFNoC: Fixed sampling rate mismatch error. Noc-Shell uses a non-cascaded 2-clk + FIFO. Increase default FIFO sizes on DUC and DDC blocks. +- UBX: Force on RX driver to eliminate transient. +- Transport code: Fixed memory leak. +- FPGA repository: Merged usrp3_rfnoc and usrp3 directories again. Cleaned up + superfluous files. Clean separation between Gen-3 and other devices in usrp3. + + ## 003.010.001.000 - Fixed multiple compiler warnings diff --git a/fpga-src b/fpga-src -Subproject 0821320bdf59756dc8f29243db18f0e8111aa70 +Subproject 3212f77ffbc8672d044372241771a25a225a0cc diff --git a/host/CMakeLists.txt b/host/CMakeLists.txt index ea4e14b57..1031ad272 100644 --- a/host/CMakeLists.txt +++ b/host/CMakeLists.txt @@ -338,8 +338,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 "a3626ec5f123a4179552be08a50dccc2") -SET(UHD_IMAGES_DOWNLOAD_SRC "uhd-images_003.010.001.000-42-gd0a60fea.zip") +SET(UHD_IMAGES_MD5SUM "9641027408a4bbd478ad221d3dae1cfd") +SET(UHD_IMAGES_DOWNLOAD_SRC "uhd-images_003.010.001.001-rc1.zip") #}}} ######################################################################## diff --git a/host/cmake/Modules/UHDVersion.cmake b/host/cmake/Modules/UHDVersion.cmake index 7c18f9312..79ba2d017 100644 --- a/host/cmake/Modules/UHDVersion.cmake +++ b/host/cmake/Modules/UHDVersion.cmake @@ -30,7 +30,7 @@ FIND_PACKAGE(Git QUIET) SET(UHD_VERSION_MAJOR 003) SET(UHD_VERSION_API 010) SET(UHD_VERSION_ABI 001) -SET(UHD_VERSION_PATCH 000) +SET(UHD_VERSION_PATCH 001) SET(UHD_VERSION_DEVEL FALSE) ######################################################################## |