mirror of
https://github.com/hb9fxq/gr-digitalhf
synced 2024-11-05 05:55:53 +00:00
d25b06a9d7
* pulse filter, preamble detection, doppler correction, and adaptive filter combined into one hier block
19 lines
427 B
C++
19 lines
427 B
C++
/* -*- c++ -*- */
|
|
|
|
#define DIGITALHF_API
|
|
|
|
%include "gnuradio.i" // the common stuff
|
|
|
|
//load generated python docstrings
|
|
%include "digitalhf_swig_doc.i"
|
|
|
|
%{
|
|
#include "digitalhf/adaptive_dfe.h"
|
|
#include "digitalhf/doppler_correction_cc.h"
|
|
%}
|
|
|
|
%include "digitalhf/adaptive_dfe.h"
|
|
GR_SWIG_BLOCK_MAGIC2(digitalhf, adaptive_dfe);
|
|
%include "digitalhf/doppler_correction_cc.h"
|
|
GR_SWIG_BLOCK_MAGIC2(digitalhf, doppler_correction_cc);
|