From b02acdd2d3f7601a550f7c1e7f1943db68c9447e Mon Sep 17 00:00:00 2001 From: Robert Ghilduta Date: Sat, 12 Sep 2020 06:05:34 -0700 Subject: [PATCH] hdl: bump version to v0.11.1 --- hdl/CHANGELOG | 12 ++++++++++++ .../software/bladeRF_nios/src/fpga_version.h | 2 +- .../bladerf/software/bladeRF_nios/src/fpga_version.h | 2 +- .../libbladeRF/src/board/bladerf1/compatibility.c | 1 + .../libbladeRF/src/board/bladerf2/compatibility.c | 1 + 5 files changed, 16 insertions(+), 2 deletions(-) diff --git a/hdl/CHANGELOG b/hdl/CHANGELOG index daf57f171..e11313c0b 100644 --- a/hdl/CHANGELOG +++ b/hdl/CHANGELOG @@ -5,6 +5,18 @@ For more detailed information, please see the git change log and issue tracker hosted on GitHub: https://github.com/nuand/bladeRF ================================================================================ +-------------------------------- +v0.11.1 (2020-09-12) +-------------------------------- + + This version includes a few bug fixes that mostly affect meta mode. + + Fixes: + + * hdl: meta_time_go clear if in WAIT state for longer than a cycle + * hdl: avoid consecutive data_valid on adc_stream + + -------------------------------- v0.11.0 (2019-05-05) -------------------------------- diff --git a/hdl/fpga/platforms/bladerf-micro/software/bladeRF_nios/src/fpga_version.h b/hdl/fpga/platforms/bladerf-micro/software/bladeRF_nios/src/fpga_version.h index e6b5864d8..ca82106f3 100644 --- a/hdl/fpga/platforms/bladerf-micro/software/bladeRF_nios/src/fpga_version.h +++ b/hdl/fpga/platforms/bladerf-micro/software/bladeRF_nios/src/fpga_version.h @@ -8,7 +8,7 @@ #define FPGA_VERSION_ID 0x7777 #define FPGA_VERSION_MAJOR 0 #define FPGA_VERSION_MINOR 11 -#define FPGA_VERSION_PATCH 0 +#define FPGA_VERSION_PATCH 1 #define FPGA_VERSION ((uint32_t)( FPGA_VERSION_MAJOR | \ (FPGA_VERSION_MINOR << 8) | \ (FPGA_VERSION_PATCH << 16) ) ) diff --git a/hdl/fpga/platforms/bladerf/software/bladeRF_nios/src/fpga_version.h b/hdl/fpga/platforms/bladerf/software/bladeRF_nios/src/fpga_version.h index e6b5864d8..ca82106f3 100644 --- a/hdl/fpga/platforms/bladerf/software/bladeRF_nios/src/fpga_version.h +++ b/hdl/fpga/platforms/bladerf/software/bladeRF_nios/src/fpga_version.h @@ -8,7 +8,7 @@ #define FPGA_VERSION_ID 0x7777 #define FPGA_VERSION_MAJOR 0 #define FPGA_VERSION_MINOR 11 -#define FPGA_VERSION_PATCH 0 +#define FPGA_VERSION_PATCH 1 #define FPGA_VERSION ((uint32_t)( FPGA_VERSION_MAJOR | \ (FPGA_VERSION_MINOR << 8) | \ (FPGA_VERSION_PATCH << 16) ) ) diff --git a/host/libraries/libbladeRF/src/board/bladerf1/compatibility.c b/host/libraries/libbladeRF/src/board/bladerf1/compatibility.c index 798d0fbfd..2e1b73088 100644 --- a/host/libraries/libbladeRF/src/board/bladerf1/compatibility.c +++ b/host/libraries/libbladeRF/src/board/bladerf1/compatibility.c @@ -34,6 +34,7 @@ const struct version_compat_table bladerf1_fw_compat_table = {fw_compat, ARRAY_S static const struct compat fpga_compat[] = { /* FPGA requires >= Firmware */ + { VERSION(0, 11, 1), VERSION(2, 1, 0) }, { VERSION(0, 11, 0), VERSION(1, 6, 1) }, { VERSION(0, 10, 2), VERSION(1, 6, 1) }, { VERSION(0, 10, 1), VERSION(1, 6, 1) }, diff --git a/host/libraries/libbladeRF/src/board/bladerf2/compatibility.c b/host/libraries/libbladeRF/src/board/bladerf2/compatibility.c index 1512a0c45..b3ee1da91 100644 --- a/host/libraries/libbladeRF/src/board/bladerf2/compatibility.c +++ b/host/libraries/libbladeRF/src/board/bladerf2/compatibility.c @@ -26,6 +26,7 @@ const struct version_compat_table bladerf2_fw_compat_table = {fw_compat, ARRAY_S static const struct compat fpga_compat[] = { /* FPGA requires >= Firmware */ + { VERSION(0, 11, 1), VERSION(2, 1, 0) }, { VERSION(0, 11, 0), VERSION(2, 1, 0) }, { VERSION(0, 10, 2), VERSION(2, 1, 0) }, { VERSION(0, 10, 1), VERSION(2, 1, 0) },