diff options
author | eb <eb@221aa14e-8319-0410-a670-987f0aec2ac5> | 2008-09-19 00:39:55 +0000 |
---|---|---|
committer | eb <eb@221aa14e-8319-0410-a670-987f0aec2ac5> | 2008-09-19 00:39:55 +0000 |
commit | e47ac9ec27e039088617d5371715d754101c7465 (patch) | |
tree | 794b345ef8d0e27a6d49c56e072e87a033e387d9 /usrp2 | |
parent | aca0061a7a7b4923cf7a71e820f68d6f838cc182 (diff) |
removed sudo
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9604 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'usrp2')
-rwxr-xr-x | usrp2/host/apps/streaming_fft.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp2/host/apps/streaming_fft.py b/usrp2/host/apps/streaming_fft.py index cd3606c982..4d341497a5 100755 --- a/usrp2/host/apps/streaming_fft.py +++ b/usrp2/host/apps/streaming_fft.py @@ -64,7 +64,7 @@ def main(): gain_clause = '-g ' + options.gain # FIXME: restore -F - cmd = "sudo %s/rx_streaming_samples -s -e %s -f %g -d %d %s -o /proc/self/fd/1 | %s/stdin_int32_fft.py %s -f %g -d %d" % ( + cmd = "%s/rx_streaming_samples -s -e %s -f %g -d %d %s -o /proc/self/fd/1 | %s/stdin_int32_fft.py %s -f %g -d %d" % ( path, options.eth, options.freq, options.decim, gain_clause, path, display_type, options.freq, options.decim) |