RDS decoder module for GNU Radio, that decodes multiple stations simultaneously
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
637 B

/* -*- c++ -*- */
#define MULTIRDS_API
%include "gnuradio.i" // the common stuff
//load generated python docstrings
%include "multirds_swig_doc.i"
%{
#include "multirds/rds_decoder.h"
#include "multirds/sync_decim.h"
#include "multirds/rds_decoder_redsea.h"
#include "multirds/stream_router.h"
%}
%include "multirds/rds_decoder.h"
GR_SWIG_BLOCK_MAGIC2(multirds, rds_decoder);
%include "multirds/sync_decim.h"
GR_SWIG_BLOCK_MAGIC2(multirds, sync_decim);
%include "multirds/rds_decoder_redsea.h"
GR_SWIG_BLOCK_MAGIC2(multirds, rds_decoder_redsea);
%include "multirds/stream_router.h"
GR_SWIG_BLOCK_MAGIC2(multirds, stream_router);