diff options
author | Balint Seeber <balint@ettus.com> | 2014-06-04 13:20:17 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2014-06-13 14:48:03 -0700 |
commit | d2b51d8ff34380dbb8f5caefaa62483f13f10d26 (patch) | |
tree | a6170d886a515af0c8fb4d29b9d0d5d0cf8491ce /gr-blocks/include | |
parent | 229fd982c66df1755f439ae7835ad56a8cccd346 (diff) |
blocks: added I/Q swap option to interleaved_short_to_complex
Diffstat (limited to 'gr-blocks/include')
-rw-r--r-- | gr-blocks/include/gnuradio/blocks/interleaved_short_to_complex.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gr-blocks/include/gnuradio/blocks/interleaved_short_to_complex.h b/gr-blocks/include/gnuradio/blocks/interleaved_short_to_complex.h index 4f89e4d05c..39304e8088 100644 --- a/gr-blocks/include/gnuradio/blocks/interleaved_short_to_complex.h +++ b/gr-blocks/include/gnuradio/blocks/interleaved_short_to_complex.h @@ -42,7 +42,9 @@ namespace gr { /*! * Build an interleaved short to complex block. */ - static sptr make(bool vector_input=false); + static sptr make(bool vector_input=false, bool swap=false); + + virtual void set_swap(bool swap)=0; }; } /* namespace blocks */ |