From c3bd0f217f6c831486032a176cb3a2e41e271034 Mon Sep 17 00:00:00 2001 From: Brian Padalino Date: Sun, 20 Jul 2014 15:51:47 -0400 Subject: [PATCH] hdl/libbladeRF/debian: Bumping FPGA v.0.0.6. --- debian/bladerf-fpga-hostedx115.postinst | 4 ++-- debian/bladerf-fpga-hostedx40.postinst | 4 ++-- hdl/CHANGELOG | 3 +++ .../software/lms_spi_controller/lms_spi_controller.c | 2 +- host/libraries/libbladeRF/src/version_compat.c | 1 + 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/debian/bladerf-fpga-hostedx115.postinst b/debian/bladerf-fpga-hostedx115.postinst index 584f9ca0e..8c4a4def5 100644 --- a/debian/bladerf-fpga-hostedx115.postinst +++ b/debian/bladerf-fpga-hostedx115.postinst @@ -1,7 +1,7 @@ #!/bin/sh -e -UPSTREAM='http://nuand.com/fpga/v0.0.5/hostedx115.rbf' -CHECKSUM='d3ca5dc09115daf0bab731744b081165' +UPSTREAM='http://nuand.com/fpga/v0.0.6/hostedx115.rbf' +CHECKSUM='eb91ecda1d1203750f0f2b9859c9c20f' RBFFILE=/usr/share/Nuand/bladeRF/hostedx115.rbf checkfile () { diff --git a/debian/bladerf-fpga-hostedx40.postinst b/debian/bladerf-fpga-hostedx40.postinst index 2b3c552c2..9ff7ed3a3 100644 --- a/debian/bladerf-fpga-hostedx40.postinst +++ b/debian/bladerf-fpga-hostedx40.postinst @@ -1,7 +1,7 @@ #!/bin/sh -e -UPSTREAM='http://nuand.com/fpga/v0.0.5/hostedx40.rbf' -CHECKSUM='a474050c832cbe528fb8635b36c36a34' +UPSTREAM='http://nuand.com/fpga/v0.0.6/hostedx40.rbf' +CHECKSUM='85b91b0caeb64750e8d0ca8dd3358992' RBFFILE=/usr/share/Nuand/bladeRF/hostedx40.rbf checkfile () { diff --git a/hdl/CHANGELOG b/hdl/CHANGELOG index 4e0ffe228..69cf03e27 100644 --- a/hdl/CHANGELOG +++ b/hdl/CHANGELOG @@ -4,6 +4,9 @@ bladeRF HDL Change Log Summary For more detailed information, please see the git change log and issue tracker hosted on GitHub: https://github.com/nuand/bladeRF ================================================================================ +v0.0.6 (2014-07-20) +-------------------------------- + * Fixed FPGA correction for gain/phase v0.0.5 (2014-06-21) -------------------------------- diff --git a/hdl/fpga/ip/altera/nios_system/software/lms_spi_controller/lms_spi_controller.c b/hdl/fpga/ip/altera/nios_system/software/lms_spi_controller/lms_spi_controller.c index ada1eceef..ea76872ea 100644 --- a/hdl/fpga/ip/altera/nios_system/software/lms_spi_controller/lms_spi_controller.c +++ b/hdl/fpga/ip/altera/nios_system/software/lms_spi_controller/lms_spi_controller.c @@ -47,7 +47,7 @@ #define FPGA_VERSION_ID 0x7777 #define FPGA_VERSION_MAJOR 0 #define FPGA_VERSION_MINOR 0 -#define FPGA_VERSION_PATCH 5 +#define FPGA_VERSION_PATCH 6 #define FPGA_VERSION (FPGA_VERSION_MAJOR | (FPGA_VERSION_MINOR << 8) | (FPGA_VERSION_PATCH << 16)) #define TIME_TAMER TIME_TAMER_0_BASE diff --git a/host/libraries/libbladeRF/src/version_compat.c b/host/libraries/libbladeRF/src/version_compat.c index 67ac80109..20fc62cc3 100644 --- a/host/libraries/libbladeRF/src/version_compat.c +++ b/host/libraries/libbladeRF/src/version_compat.c @@ -48,6 +48,7 @@ static const struct compat fw_compat_tbl[] = { static const struct compat fpga_compat_tbl[] = { /* FPGA requires >= Firmware */ + { VERSION(0, 0, 6), VERSION(1, 6, 1) }, { VERSION(0, 0, 5), VERSION(1, 6, 1) }, { VERSION(0, 0, 4), VERSION(1, 6, 1) }, { VERSION(0, 0, 3), VERSION(1, 6, 1) },