Skip to content

Commit

Permalink
hdl: bump version to v0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rghilduta committed Sep 12, 2020
1 parent a8b6771 commit b02acdd
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 2 deletions.
12 changes: 12 additions & 0 deletions hdl/CHANGELOG
Expand Up @@ -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)
--------------------------------
Expand Down
Expand Up @@ -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) ) )
Expand Down
Expand Up @@ -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) ) )
Expand Down
Expand Up @@ -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) },
Expand Down
Expand Up @@ -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) },
Expand Down

0 comments on commit b02acdd

Please sign in to comment.