aboutsummaryrefslogtreecommitdiffstats
path: root/firmware/usrp3/n230/n230_eeprom.h
diff options
context:
space:
mode:
authorAshish Chaudhari <ashish@ettus.com>2016-01-08 13:29:13 -0800
committerAshish Chaudhari <ashish@ettus.com>2016-01-08 13:29:13 -0800
commitb025e7ec71839da95c94784759de40482e7d77f1 (patch)
treeb815eea43f94083578b2d3bec2a8857e6570b7e9 /firmware/usrp3/n230/n230_eeprom.h
parent2326da0dd107e2a784771ff163e3b33be45300ea (diff)
downloaduhd-b025e7ec71839da95c94784759de40482e7d77f1.tar.gz
uhd-b025e7ec71839da95c94784759de40482e7d77f1.tar.bz2
uhd-b025e7ec71839da95c94784759de40482e7d77f1.zip
n230: Added hardware compatibility version checks to UHD
Diffstat (limited to 'firmware/usrp3/n230/n230_eeprom.h')
-rw-r--r--firmware/usrp3/n230/n230_eeprom.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/firmware/usrp3/n230/n230_eeprom.h b/firmware/usrp3/n230/n230_eeprom.h
index 5513d4239..b6c2a0c76 100644
--- a/firmware/usrp3/n230/n230_eeprom.h
+++ b/firmware/usrp3/n230/n230_eeprom.h
@@ -35,7 +35,7 @@ extern "C" {
#endif
#define N230_EEPROM_VER_MAJOR 1
-#define N230_EEPROM_VER_MINOR 0
+#define N230_EEPROM_VER_MINOR 1
#define N230_EEPROM_SERIAL_LEN 9
#define N230_EEPROM_NAME_LEN 32
@@ -57,7 +57,9 @@ typedef struct
uint16_t hw_revision;
uint16_t hw_product;
uint8_t serial[N230_EEPROM_SERIAL_LEN];
- uint8_t _pad0[20 - N230_EEPROM_SERIAL_LEN];
+ uint8_t _pad_serial;
+ uint16_t hw_revision_compat;
+ uint8_t _pad0[18 - (N230_EEPROM_SERIAL_LEN + 1)];
//Ethernet specific
uint32_t gateway;