aboutsummaryrefslogtreecommitdiffstats
path: root/mpm
diff options
context:
space:
mode:
authordjepson1 <daniel.jepson@ni.com>2017-12-20 16:45:00 -0600
committerMartin Braun <martin.braun@ettus.com>2017-12-22 15:06:03 -0800
commit2a83c6133f5541e6ffed34681cd6e8f5ff90fe76 (patch)
tree0d6f9619e805d30c71fa3714053c1c3c06d038f4 /mpm
parent62efbfff1e242f87f11bde65f27af602e22777ea (diff)
downloaduhd-2a83c6133f5541e6ffed34681cd6e8f5ff90fe76.tar.gz
uhd-2a83c6133f5541e6ffed34681cd6e8f5ff90fe76.tar.bz2
uhd-2a83c6133f5541e6ffed34681cd6e8f5ff90fe76.zip
mg: ignore Mykonos framer error
According to ADI, this bit toggles a lot so ignoring it for now.
Diffstat (limited to 'mpm')
-rw-r--r--mpm/python/usrp_mpm/dboard_manager/magnesium.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpm/python/usrp_mpm/dboard_manager/magnesium.py b/mpm/python/usrp_mpm/dboard_manager/magnesium.py
index baf3ebb01..724314c42 100644
--- a/mpm/python/usrp_mpm/dboard_manager/magnesium.py
+++ b/mpm/python/usrp_mpm/dboard_manager/magnesium.py
@@ -667,7 +667,7 @@ class Magnesium(DboardManagerBase):
if not jesdcore.get_deframer_status():
self.log.error("FPGA Deframer Error!")
raise Exception('JESD Core Deframer is not synced, even after 5 attempts!')
- if (self.mykonos.get_framer_status() & 0xFF) != 0x3E:
+ if (self.mykonos.get_framer_status() & 0x3F) != 0x3E:
self.log.error("Mykonos Framer Error: 0x{:X}".format((self.mykonos.get_framer_status() & 0xFF)))
raise Exception('Mykonos Framer is not synced!')
if (self.mykonos.get_multichip_sync_status() & 0xB) != 0xB: