diff options
author | michael-west <michael.west@ettus.com> | 2020-08-20 16:06:36 -0700 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2020-08-25 07:11:10 -0500 |
commit | 0f52366533dfe5d9d5d74ffb0e41013171fb79b9 (patch) | |
tree | 6072cbb53def36eb7fcd53694791ad761db88217 /firmware/fx3/b200/common | |
parent | 0d273bfe0c5c77160d5d5fdbfc9b2a8c9f71a5c2 (diff) | |
download | uhd-0f52366533dfe5d9d5d74ffb0e41013171fb79b9.tar.gz uhd-0f52366533dfe5d9d5d74ffb0e41013171fb79b9.tar.bz2 uhd-0f52366533dfe5d9d5d74ffb0e41013171fb79b9.zip |
B2xx: firmware: Fix address for serial number
The address for the serial number was off by 2 bytes, causing a bad
value in the USB descriptor. This only occurred if the bootloader
image was loaded on the device.
Signed-off-by: michael-west <michael.west@ettus.com>
Diffstat (limited to 'firmware/fx3/b200/common')
-rw-r--r-- | firmware/fx3/b200/common/common_const.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/fx3/b200/common/common_const.h b/firmware/fx3/b200/common/common_const.h index 1b40a7fdd..fef396485 100644 --- a/firmware/fx3/b200/common/common_const.h +++ b/firmware/fx3/b200/common/common_const.h @@ -33,7 +33,7 @@ #define PID_CYPRESS_DEFAULT 0x00F0 #define EEPROM_REV0_SERIAL_ADDR 0x04F7 -#define EEPROM_REV1_SERIAL_ADDR 0x7F23 +#define EEPROM_REV1_SERIAL_ADDR 0x7F25 #define EEPROM_SERIAL_LENGTH 9 #define EEPROM_REV1_MAGIC_ADDR 0x7F00 |