Skip to content

Commit 0b466c6

Browse files
committed
fx3_firmware: Version bump to v1.8.0
Minor rev incremented to denote added to "public" interface.
1 parent 79aaf43 commit 0b466c6

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

fx3_firmware/CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@ For more detailed information, please see the git change log and issue tracker
55
hosted on GitHub: https://github.com/nuand/bladeRF
66
================================================================================
77

8+
v1.8.0 (2014-11-6)
9+
--------------------------------
10+
* Added "device ready" query to denote when operations such as flash-based
11+
FPGA loading have completed.
12+
813
v1.7.1 (2014-07-19)
914
--------------------------------
1015
* DMA buffers are now cleared when disabling a module. This fixes an issue
1116
where stale samples were left in DMA buffers.
1217
* Added missing support for reading back the state of the firmware loopback
1318

19+
1420
v1.7.0 (2014-07-04)
1521
--------------------------------
1622
* Added firmware-based loopback mode

fx3_firmware/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 2.8.3)
22

33
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}/../host/cmake/modules)
44
set(VERSION_INFO_MAJOR 1)
5-
set(VERSION_INFO_MINOR 7)
6-
set(VERSION_INFO_PATCH 1)
5+
set(VERSION_INFO_MINOR 8)
6+
set(VERSION_INFO_PATCH 0)
77
if(NOT DEFINED VERSION_INFO_EXTRA)
88
set(VERSION_INFO_EXTRA "git")
99
endif()

host/libraries/libbladeRF/src/version_compat.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ struct compat {
4040

4141
static const struct compat fw_compat_tbl[] = {
4242
/* Firmware requires >= FPGA */
43+
{ VERSION(1, 8, 0), VERSION(0, 0, 2) },
4344
{ VERSION(1, 7, 1), VERSION(0, 0, 2) },
4445
{ VERSION(1, 7, 0), VERSION(0, 0, 2) },
4546
{ VERSION(1, 6, 1), VERSION(0, 0, 2) },

0 commit comments

Comments
 (0)