Skip to content

Commit ebc346b

Browse files
committed
hdl: Bumped FPGA version to v0.1.2
1 parent 47be0c8 commit ebc346b

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

hdl/CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ For more detailed information, please see the git change log and issue tracker
55
hosted on GitHub: https://github.com/nuand/bladeRF
66
================================================================================
77

8+
v0.1.2 (2014-10-22)
9+
--------------------------------
10+
* Fixed issues with TX_NOW and dropped messages. This fixes issues
11+
#334 and #335.
12+
813
v0.1.1 (2014-10-22)
914
--------------------------------
1015
* Fixed timing errors that caused failures in SPI communication with the

hdl/fpga/ip/altera/nios_system/software/lms_spi_controller/lms_spi_controller.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
#define FPGA_VERSION_ID 0x7777
4848
#define FPGA_VERSION_MAJOR 0
4949
#define FPGA_VERSION_MINOR 1
50-
#define FPGA_VERSION_PATCH 1
50+
#define FPGA_VERSION_PATCH 2
5151
#define FPGA_VERSION (FPGA_VERSION_MAJOR | (FPGA_VERSION_MINOR << 8) | (FPGA_VERSION_PATCH << 16))
5252

5353
#define TIME_TAMER TIME_TAMER_0_BASE

host/libraries/libbladeRF/src/version_compat.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ static const struct compat fw_compat_tbl[] = {
4949

5050
static const struct compat fpga_compat_tbl[] = {
5151
/* FPGA requires >= Firmware */
52+
{ VERSION(0, 1, 2), VERSION(1, 6, 1) },
5253
{ VERSION(0, 1, 1), VERSION(1, 6, 1) },
5354
{ VERSION(0, 1, 0), VERSION(1, 6, 1) },
5455
{ VERSION(0, 0, 6), VERSION(1, 6, 1) },

0 commit comments

Comments
 (0)