Skip to content

Commit

Permalink
app: add executable application DABstep
Browse files Browse the repository at this point in the history
  • Loading branch information
MLsmd committed Aug 25, 2017
1 parent e08cee7 commit c791166
Show file tree
Hide file tree
Showing 6 changed files with 1,129 additions and 238 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ add_subdirectory(include/dab)
add_subdirectory(lib)
add_subdirectory(swig)
add_subdirectory(python)
add_subdirectory(python/GUI)
add_subdirectory(grc)
add_subdirectory(apps)
add_subdirectory(docs)
Expand Down
1 change: 1 addition & 0 deletions apps/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@ include(GrPython)

GR_PYTHON_INSTALL(
PROGRAMS
DABstep
DESTINATION bin
)
1,090 changes: 1,090 additions & 0 deletions apps/DABstep

Large diffs are not rendered by default.

147 changes: 0 additions & 147 deletions apps/usrp_dab_rx.py

This file was deleted.

91 changes: 0 additions & 91 deletions apps/usrp_dab_tx.py

This file was deleted.

37 changes: 37 additions & 0 deletions python/GUI/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Copyright 2011 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GNU Radio is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Radio; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.

include(GrPython)

GR_PYTHON_INSTALL(
FILES
usrp_dab_rx.py
usrp_dab_tx.py
user_frontend.py
DESTINATION ${GR_PYTHON_DIR}/dab
COMPONENT "dab_python"
)
set(GR_PKG_DAB_DATA_DIR ${GR_PKG_DATA_DIR})
install(FILES
DAB_logo.png
led_red.png
led_orange.png
led_green.png
DESTINATION ${GR_PKG_DAB_DATA_DIR}
)

0 comments on commit c791166

Please sign in to comment.