diff options
author | Moritz Fischer <moritz.fischer@ettus.com> | 2015-11-24 14:59:24 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-12-16 15:40:18 -0800 |
commit | 789784fc7e8aeb12b8d8092d6874dee49712a156 (patch) | |
tree | 95d48e6cdc9b323b0106042d250ec0f021c4e6f2 /host/lib/usrp/e300/e300_eeprom_manager.cpp | |
parent | 10178875a154e58af6c14774621776d13e7e3daa (diff) | |
download | uhd-789784fc7e8aeb12b8d8092d6874dee49712a156.tar.gz uhd-789784fc7e8aeb12b8d8092d6874dee49712a156.tar.bz2 uhd-789784fc7e8aeb12b8d8092d6874dee49712a156.zip |
e3xx: Added FPGA loading code for speedgrade 3 devices.
Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com>
Diffstat (limited to 'host/lib/usrp/e300/e300_eeprom_manager.cpp')
-rw-r--r-- | host/lib/usrp/e300/e300_eeprom_manager.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/host/lib/usrp/e300/e300_eeprom_manager.cpp b/host/lib/usrp/e300/e300_eeprom_manager.cpp index 752bd3768..00200747d 100644 --- a/host/lib/usrp/e300/e300_eeprom_manager.cpp +++ b/host/lib/usrp/e300/e300_eeprom_manager.cpp @@ -210,8 +210,11 @@ e300_eeprom_manager::mboard_t e300_eeprom_manager::get_mb_type( case E300_MB_PID: return USRP_E300_MB; - case E310_MB_PID: - return USRP_E310_MB; + case E310_SG1_MB_PID: + return USRP_E310_SG1_MB; + + case E310_SG3_MB_PID: + return USRP_E310_SG3_MB; default: return UNKNOWN; @@ -228,7 +231,8 @@ std::string e300_eeprom_manager::get_mb_type_string(void) const case E300_MB_PID: return "E3XX"; - case E310_MB_PID: + case E310_SG1_MB_PID: + case E310_SG3_MB_PID: return "E3XX"; default: |