Skip to content

Commit

Permalink
fx3_firmware: Version bump to v1.8.0
Browse files Browse the repository at this point in the history
Minor rev incremented to denote added to "public" interface.
  • Loading branch information
jynik committed Nov 6, 2014
1 parent 79aaf43 commit 0b466c6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions fx3_firmware/CHANGELOG
Expand Up @@ -5,12 +5,18 @@ For more detailed information, please see the git change log and issue tracker
hosted on GitHub: https://github.com/nuand/bladeRF
================================================================================

v1.8.0 (2014-11-6)
--------------------------------
* Added "device ready" query to denote when operations such as flash-based
FPGA loading have completed.

v1.7.1 (2014-07-19)
--------------------------------
* DMA buffers are now cleared when disabling a module. This fixes an issue
where stale samples were left in DMA buffers.
* Added missing support for reading back the state of the firmware loopback


v1.7.0 (2014-07-04)
--------------------------------
* Added firmware-based loopback mode
Expand Down
4 changes: 2 additions & 2 deletions fx3_firmware/CMakeLists.txt
Expand Up @@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 2.8.3)

list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}/../host/cmake/modules)
set(VERSION_INFO_MAJOR 1)
set(VERSION_INFO_MINOR 7)
set(VERSION_INFO_PATCH 1)
set(VERSION_INFO_MINOR 8)
set(VERSION_INFO_PATCH 0)
if(NOT DEFINED VERSION_INFO_EXTRA)
set(VERSION_INFO_EXTRA "git")
endif()
Expand Down
1 change: 1 addition & 0 deletions host/libraries/libbladeRF/src/version_compat.c
Expand Up @@ -40,6 +40,7 @@ struct compat {

static const struct compat fw_compat_tbl[] = {
/* Firmware requires >= FPGA */
{ VERSION(1, 8, 0), VERSION(0, 0, 2) },
{ VERSION(1, 7, 1), VERSION(0, 0, 2) },
{ VERSION(1, 7, 0), VERSION(0, 0, 2) },
{ VERSION(1, 6, 1), VERSION(0, 0, 2) },
Expand Down

0 comments on commit 0b466c6

Please sign in to comment.