- added frequency tuner
git-svn-id: http://moon:8086/svn/software/trunk/projects/GnuRadio@542 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
@@ -28,5 +28,6 @@ install(FILES
|
|||||||
jay_message_debug.xml
|
jay_message_debug.xml
|
||||||
jay_peak_manager.xml
|
jay_peak_manager.xml
|
||||||
jay_squelch.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
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -31,5 +31,6 @@ install(FILES
|
|||||||
add.h
|
add.h
|
||||||
peak_detect.h
|
peak_detect.h
|
||||||
message_debug.h
|
message_debug.h
|
||||||
squelch.h DESTINATION include/jay
|
squelch.h
|
||||||
|
frequency_tuner.h DESTINATION include/jay
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -35,7 +35,8 @@ list(APPEND jay_sources
|
|||||||
add_impl.cc
|
add_impl.cc
|
||||||
peak_detect_impl.cc
|
peak_detect_impl.cc
|
||||||
message_debug_impl.cc
|
message_debug_impl.cc
|
||||||
squelch_impl.cc )
|
squelch_impl.cc
|
||||||
|
frequency_tuner_impl.cc )
|
||||||
|
|
||||||
set(jay_sources "${jay_sources}" PARENT_SCOPE)
|
set(jay_sources "${jay_sources}" PARENT_SCOPE)
|
||||||
if(NOT jay_sources)
|
if(NOT jay_sources)
|
||||||
|
|||||||
@@ -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_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_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_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)
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
#include "jay/peak_detect.h"
|
#include "jay/peak_detect.h"
|
||||||
#include "jay/message_debug.h"
|
#include "jay/message_debug.h"
|
||||||
#include "jay/squelch.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);
|
GR_SWIG_BLOCK_MAGIC2(jay, message_debug);
|
||||||
%include "jay/squelch.h"
|
%include "jay/squelch.h"
|
||||||
GR_SWIG_BLOCK_MAGIC2(jay, squelch);
|
GR_SWIG_BLOCK_MAGIC2(jay, squelch);
|
||||||
|
%include "jay/frequency_tuner.h"
|
||||||
|
GR_SWIG_BLOCK_MAGIC2(jay, frequency_tuner);
|
||||||
|
|||||||
Reference in New Issue
Block a user