gr-lora/swig/lora_swig.i

29 wiersze
685 B
OpenEdge ABL
Czysty Zwykły widok Historia

2016-06-22 19:43:15 +00:00
/* -*- c++ -*- */
#define LORA_API
%include "gnuradio.i" // the common stuff
//load generated python docstrings
%include "lora_swig_doc.i"
%{
2016-08-11 11:37:40 +00:00
#include "lora/decoder.h"
#include "lora/message_file_sink.h"
#include "lora/message_socket_sink.h"
2017-07-28 08:24:22 +00:00
#include "lora/channelizer.h"
#include "lora/controller.h"
2016-06-22 19:43:15 +00:00
%}
2016-08-11 11:37:40 +00:00
%include "lora/decoder.h"
GR_SWIG_BLOCK_MAGIC2(lora, decoder);
%include "lora/message_file_sink.h"
GR_SWIG_BLOCK_MAGIC2(lora, message_file_sink);
%include "lora/message_socket_sink.h"
GR_SWIG_BLOCK_MAGIC2(lora, message_socket_sink);
2017-07-28 08:24:22 +00:00
%include "lora/channelizer.h"
GR_SWIG_BLOCK_MAGIC2(lora, channelizer);
%include "lora/controller.h"
GR_SWIG_BLOCK_MAGIC2(lora, controller);