aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/python
diff options
context:
space:
mode:
authorAaron Rossetto <aaron.rossetto@ni.com>2022-03-17 09:13:01 -0500
committerAaron Rossetto <aaron.rossetto@ni.com>2022-03-23 16:14:22 -0500
commitecb49902970b94c836a41af6430832a2de7f075d (patch)
tree6e628e7d72cc907004d836e39505022140ba94f3 /mpm/python
parent91b6110210f353fd2e92efad18d361cf4436d69d (diff)
downloaduhd-ecb49902970b94c836a41af6430832a2de7f075d.tar.gz
uhd-ecb49902970b94c836a41af6430832a2de7f075d.tar.bz2
uhd-ecb49902970b94c836a41af6430832a2de7f075d.zip
mpm: n3xx: Recommend reboot USRP after BIST
Diffstat (limited to 'mpm/python')
-rwxr-xr-xmpm/python/n3xx_bist5
1 files changed, 4 insertions, 1 deletions
diff --git a/mpm/python/n3xx_bist b/mpm/python/n3xx_bist
index 33dab3bf6..a49171e7b 100755
--- a/mpm/python/n3xx_bist
+++ b/mpm/python/n3xx_bist
@@ -595,7 +595,10 @@ class N3XXBIST(bist.UsrpBIST):
##############################################################################
def main():
" Go, go, go! "
- return N3XXBIST().run()
+ result = N3XXBIST().run()
+ print("BIST complete. It is strongly recommended that you reboot your USRP ")
+ print("before returning to regular operation.")
+ return result
if __name__ == '__main__':
exit(not main())