diff options
author | Martin Braun <martin.braun@ettus.com> | 2017-08-04 14:22:06 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-12-22 15:04:00 -0800 |
commit | c701ea815df3d6bb76eba2374b6c6158fa8dc963 (patch) | |
tree | 2cf7f9f0477f0e2682a14cb5e18968563ac7210c /mpm/python/n3xx_bist | |
parent | 34474597f35a334ebf4c1e898bb92d0d301712c6 (diff) | |
download | uhd-c701ea815df3d6bb76eba2374b6c6158fa8dc963.tar.gz uhd-c701ea815df3d6bb76eba2374b6c6158fa8dc963.tar.bz2 uhd-c701ea815df3d6bb76eba2374b6c6158fa8dc963.zip |
n3xx bist: Refactored functions with timeout
Diffstat (limited to 'mpm/python/n3xx_bist')
-rwxr-xr-x | mpm/python/n3xx_bist | 43 |
1 files changed, 28 insertions, 15 deletions
diff --git a/mpm/python/n3xx_bist b/mpm/python/n3xx_bist index dfbc33590..b734dd967 100755 --- a/mpm/python/n3xx_bist +++ b/mpm/python/n3xx_bist @@ -30,6 +30,9 @@ from datetime import datetime import argparse from six import iteritems +GPS_WARMUP_TIMEOUT = 70 # Data sheet says "about a minute" +GPS_LOCKOK_TIMEOUT = 2 # Data sheet says about 15 minutes + ############################################################################## # Aurora/SFP BIST code ############################################################################## @@ -196,6 +199,21 @@ def sock_read_line(my_sock, timeout=60, interval=0.1): time.sleep(interval) raise RuntimeError("sock_read_line() exceeded read timeout!") +def poll_with_timeout(state_check, timeout_ms, interval_ms): + """ + Calls state_check() every interval_ms until it returns a positive value, or + until a timeout is exceeded. + + Returns True if state_check() returned True within the timeout. + """ + max_time = time.time() + (float(timeout_ms) / 1000) + interval_s = float(interval_ms) / 1000 + while time.time() < max_time: + if state_check(): + return True + time.sleep(interval_s) + return False + ############################################################################## # Bist class ############################################################################## @@ -401,24 +419,19 @@ class N310BIST(object): time.sleep(5) # Wait for WARMUP to go low sys.stderr.write("Waiting for WARMUP to go low...\n") - for _ in range(70): - # FIXME proper timeout - if not gpio_tca6424.get('GPS-WARMUP'): - break - time.sleep(1) - if gpio_tca6424.get('GPS-WARMUP'): + if not poll_with_timeout( + lambda: not gpio_tca6424.get('GPS-WARMUP'), + GPS_WARMUP_TIMEOUT, 1000 + ): raise RuntimeError("GPS-WARMUP did not go low within one minute!") sys.stderr.write("Chip is warmed up.\n") - if gpio_tca6424.get('GPS-ALARM'): - raise RuntimeError("GPS-ALARM is high!") - # Wait for LOCKOK + # Wait for LOCKOK. Data sheet says wait up to 15 minutes for GPS lock. sys.stderr.write("Waiting for LOCKOK to go high...\n") - for _ in range(1): - # FIXME proper timeout - if gpio_tca6424.get('GPS-LOCKOK'): - break - time.sleep(1) - if not gpio_tca6424.get('GPS-WARMUP'): + if not poll_with_timeout( + lambda: gpio_tca6424.get('GPS-LOCKOK'), + GPS_LOCKOK_TIMEOUT, + 1000 + ): sys.stderr.write("No GPS-LOCKOK!\n") sys.stderr.write("GPS-SURVEY status: {}\n".format( gpio_tca6424.get('GPS-SURVEY') |