diff --git a/gr-jay/grc/CMakeLists.txt b/gr-jay/grc/CMakeLists.txt index f700fec..5d1df7e 100644 --- a/gr-jay/grc/CMakeLists.txt +++ b/gr-jay/grc/CMakeLists.txt @@ -28,5 +28,6 @@ install(FILES jay_message_debug.xml jay_peak_manager.xml jay_squelch.xml - jay_message_filter.xml DESTINATION share/gnuradio/grc/blocks + jay_message_filter.xml + jay_frequency_tuner.xml DESTINATION share/gnuradio/grc/blocks ) diff --git a/gr-jay/include/jay/CMakeLists.txt b/gr-jay/include/jay/CMakeLists.txt index 5bf7de1..e35441a 100644 --- a/gr-jay/include/jay/CMakeLists.txt +++ b/gr-jay/include/jay/CMakeLists.txt @@ -31,5 +31,6 @@ install(FILES add.h peak_detect.h message_debug.h - squelch.h DESTINATION include/jay + squelch.h + frequency_tuner.h DESTINATION include/jay ) diff --git a/gr-jay/lib/CMakeLists.txt b/gr-jay/lib/CMakeLists.txt index f6aec3e..a4a1904 100644 --- a/gr-jay/lib/CMakeLists.txt +++ b/gr-jay/lib/CMakeLists.txt @@ -35,7 +35,8 @@ list(APPEND jay_sources add_impl.cc peak_detect_impl.cc message_debug_impl.cc - squelch_impl.cc ) + squelch_impl.cc + frequency_tuner_impl.cc ) set(jay_sources "${jay_sources}" PARENT_SCOPE) if(NOT jay_sources) diff --git a/gr-jay/python/CMakeLists.txt b/gr-jay/python/CMakeLists.txt index 174eba3..f25d93e 100644 --- a/gr-jay/python/CMakeLists.txt +++ b/gr-jay/python/CMakeLists.txt @@ -54,3 +54,4 @@ GR_ADD_TEST(qa_message_debug ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/qa GR_ADD_TEST(qa_peak_manager ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/qa_peak_manager.py) GR_ADD_TEST(qa_squelch ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/qa_squelch.py) GR_ADD_TEST(qa_message_filter ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/qa_message_filter.py) +GR_ADD_TEST(qa_frequency_tuner ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/qa_frequency_tuner.py) diff --git a/gr-jay/swig/jay_swig.i b/gr-jay/swig/jay_swig.i index 136e0e1..2e6089c 100644 --- a/gr-jay/swig/jay_swig.i +++ b/gr-jay/swig/jay_swig.i @@ -17,6 +17,7 @@ #include "jay/peak_detect.h" #include "jay/message_debug.h" #include "jay/squelch.h" +#include "jay/frequency_tuner.h" %} @@ -39,3 +40,5 @@ GR_SWIG_BLOCK_MAGIC2(jay, peak_detect); GR_SWIG_BLOCK_MAGIC2(jay, message_debug); %include "jay/squelch.h" GR_SWIG_BLOCK_MAGIC2(jay, squelch); +%include "jay/frequency_tuner.h" +GR_SWIG_BLOCK_MAGIC2(jay, frequency_tuner);