Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
fx3_firmware: Version bump to v1.8.0
Minor rev incremented to denote added to "public" interface.
- Loading branch information
|
@@ -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 |
|
|
|
@@ -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() |
|
|
|
@@ -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) }, |
|
|