diff options
author | Nick Foster <nick@ettus.com> | 2011-05-18 20:19:03 -0700 |
---|---|---|
committer | Nick Foster <nick@ettus.com> | 2011-05-18 20:19:03 -0700 |
commit | 21856ee1ba8fb755bf94a0c70c76287f4998b6bf (patch) | |
tree | a4794095ed691516be3cfd112a54845008a8d271 /host/lib/usrp/usrp2/usrp2_iface.cpp | |
parent | df020c6923aae830a20a2405c9de086b22e7c5f0 (diff) | |
download | uhd-21856ee1ba8fb755bf94a0c70c76287f4998b6bf.tar.gz uhd-21856ee1ba8fb755bf94a0c70c76287f4998b6bf.tar.bz2 uhd-21856ee1ba8fb755bf94a0c70c76287f4998b6bf.zip |
N210: changes for rev 4 support
Diffstat (limited to 'host/lib/usrp/usrp2/usrp2_iface.cpp')
-rw-r--r-- | host/lib/usrp/usrp2/usrp2_iface.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/host/lib/usrp/usrp2/usrp2_iface.cpp b/host/lib/usrp/usrp2/usrp2_iface.cpp index 5e197d1f9..bf7fe803f 100644 --- a/host/lib/usrp/usrp2/usrp2_iface.cpp +++ b/host/lib/usrp/usrp2/usrp2_iface.cpp @@ -363,6 +363,8 @@ public: case 0x0400: return USRP2_REV4; case 0x0A00: return USRP_N200; case 0x0A01: return USRP_N210; + case 0x0A10: return USRP_N200_R4; + case 0x0A11: return USRP_N210_R4; } return USRP_NXXX; //unknown type } @@ -373,6 +375,8 @@ public: case USRP2_REV4: return "USRP2-REV4"; case USRP_N200: return "USRP-N200"; case USRP_N210: return "USRP-N210"; + case USRP_N200_R4: return "USRP-N200-REV4"; + case USRP_N210_R4: return "USRP-N210-REV4"; case USRP_NXXX: return "USRP-N???"; } UHD_THROW_INVALID_CODE_PATH(); |