From b108a919b286431d5d44f343bc9f2fac4bdb58d7 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Thu, 30 Apr 2015 12:36:19 -0700 Subject: Updated Images Package for B200 --- 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 c235ffe82..d41da8d0e 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 "57c06338de0504f296a2431762725683") -SET(UHD_IMAGES_DOWNLOAD_SRC "uhd-images_003.008.003-release.zip") +SET(UHD_IMAGES_MD5SUM "3cffe150413380ef74f23137f0157ba6") +SET(UHD_IMAGES_DOWNLOAD_SRC "uhd-images_003.008.003-18-g4efa67ff.zip") #}}} ######################################################################## -- cgit v1.2.3 From 15a61a77f499363d64d92e5bb79b0867f66a8f1f Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Thu, 30 Apr 2015 12:36:58 -0700 Subject: b200: Fixed compiler warning --- host/lib/usrp/b200/b200_impl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'host') diff --git a/host/lib/usrp/b200/b200_impl.cpp b/host/lib/usrp/b200/b200_impl.cpp index d66920bd9..724f5f8b9 100644 --- a/host/lib/usrp/b200/b200_impl.cpp +++ b/host/lib/usrp/b200/b200_impl.cpp @@ -205,8 +205,8 @@ UHD_STATIC_BLOCK(register_b200_device) * Structors **********************************************************************/ b200_impl::b200_impl(const device_addr_t &device_addr) : - _tick_rate(0.0), // Forces a clock initialization at startup - _revision(0) + _revision(0), + _tick_rate(0.0) // Forces a clock initialization at startup { _tree = property_tree::make(); _type = device::USRP; -- cgit v1.2.3 From dd3e56965ed9f60aee1cb1cc88593fb41bf2bc02 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Thu, 30 Apr 2015 12:38:42 -0700 Subject: docs: Removed stray CMake message --- host/docs/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) (limited to 'host') diff --git a/host/docs/CMakeLists.txt b/host/docs/CMakeLists.txt index a73d39356..eb4b67c29 100644 --- a/host/docs/CMakeLists.txt +++ b/host/docs/CMakeLists.txt @@ -55,7 +55,6 @@ IF(ENABLE_MANUAL) SET(DOXYGEN_FPGA_MANUAL_REFERENCE "\\subpage md_fpga \"Part III: FPGA Manual\"") SET(DOXYGEN_STRIP_EXTRA "${FPGA_SUBMODULE_DIR}/docs") ENDIF(HAS_FPGA_SUBMODULE) - message(STATUS ${manual_sources}) CONFIGURE_FILE( ${CMAKE_CURRENT_SOURCE_DIR}/mainpage.dox.in ${CMAKE_CURRENT_BINARY_DIR}/mainpage.dox -- cgit v1.2.3