Skip to content

Commit

Permalink
hdl: nios: bump FPGA version to v0.10.0
Browse files Browse the repository at this point in the history
Version increase primarily reflects the new quick tune feature for
bladeRF2 devices.
  • Loading branch information
bglod authored and rtucker committed Nov 26, 2018
1 parent 098705c commit b809606
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#define FPGA_VERSION_ID 0x7777
#define FPGA_VERSION_MAJOR 0
#define FPGA_VERSION_MINOR 9
#define FPGA_VERSION_MINOR 10
#define FPGA_VERSION_PATCH 0
#define FPGA_VERSION ((uint32_t)( FPGA_VERSION_MAJOR | \
(FPGA_VERSION_MINOR << 8) | \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#define FPGA_VERSION_ID 0x7777
#define FPGA_VERSION_MAJOR 0
#define FPGA_VERSION_MINOR 9
#define FPGA_VERSION_MINOR 10
#define FPGA_VERSION_PATCH 0
#define FPGA_VERSION ((uint32_t)( FPGA_VERSION_MAJOR | \
(FPGA_VERSION_MINOR << 8) | \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,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, 10, 0), VERSION(1, 6, 1) },
{ VERSION(0, 9, 0), VERSION(1, 6, 1) },
{ VERSION(0, 8, 0), VERSION(1, 6, 1) },
{ VERSION(0, 7, 3), VERSION(1, 6, 1) },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,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, 10, 0), VERSION(2, 1, 0) },
{ VERSION(0, 9, 0), VERSION(2, 1, 0) },
{ VERSION(0, 8, 0), VERSION(2, 1, 0) },
{ VERSION(0, 7, 3), VERSION(2, 1, 0) },
Expand Down

0 comments on commit b809606

Please sign in to comment.