diff options
Diffstat (limited to 'mpm/python/n3xx_bist')
-rwxr-xr-x | mpm/python/n3xx_bist | 5 |
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()) |