summaryrefslogtreecommitdiff
path: root/gr-utils/python/utils/gr_plot_fft
diff options
context:
space:
mode:
authorjapm48 <japm48@users.noreply.github.com>2020-03-26 17:27:28 +0100
committerMichael Dickens <michael.dickens@ettus.com>2020-04-10 14:57:01 -0400
commit8427b6cdd8112f82ddae5815a87334708db5764e (patch)
tree58beed1fa6ee6b480c4bbd68e5ad5876a58a3992 /gr-utils/python/utils/gr_plot_fft
parent48271c3bafff90b1b06790a4751814408ceee697 (diff)
gr-utils: restructure plot_tools folder
Move python/utils/ to plot_tools/ as per issue #2462.
Diffstat (limited to 'gr-utils/python/utils/gr_plot_fft')
-rwxr-xr-xgr-utils/python/utils/gr_plot_fft26
1 files changed, 0 insertions, 26 deletions
diff --git a/gr-utils/python/utils/gr_plot_fft b/gr-utils/python/utils/gr_plot_fft
deleted file mode 100755
index 9851c08007..0000000000
--- a/gr-utils/python/utils/gr_plot_fft
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/usr/bin/env python
-#
-# Copyright 2012 Free Software Foundation, Inc.
-#
-# This file is part of GNU Radio
-#
-# SPDX-License-Identifier: GPL-3.0-or-later
-#
-#
-
-from gnuradio.plot_fft_base import plot_fft_base
-
-# This is a wrapper program for plot_fft_base. It handles any data
-# type and defaults to complex64.
-
-def main():
- parser = plot_fft_base.setup_options()
- args = parser.parse_args()
-
- plot_fft_base(None, args.file, args)
-
-if __name__ == "__main__":
- try:
- main()
- except KeyboardInterrupt:
- pass