diff options
author | fengzhe29888 <fengzhe29888@gmali.com> | 2015-01-22 11:26:05 -0500 |
---|---|---|
committer | fengzhe29888 <fengzhe29888@gmali.com> | 2015-01-22 17:58:17 -0500 |
commit | 481292779472c8ed93dcbfd5a9c957da2e1bbd07 (patch) | |
tree | 73ebca85bf89122de54ef36b73a0af886f67dfb2 /gr-blocks/include/gnuradio/blocks/repack_bits_bb.h | |
parent | 0832b5bd7cfe583bda929d950955d7c918c48cf0 (diff) |
blocks: added callback function set_k_and_l to repack bits
digital:corrected a function declaration in public header
Diffstat (limited to 'gr-blocks/include/gnuradio/blocks/repack_bits_bb.h')
-rw-r--r-- | gr-blocks/include/gnuradio/blocks/repack_bits_bb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gr-blocks/include/gnuradio/blocks/repack_bits_bb.h b/gr-blocks/include/gnuradio/blocks/repack_bits_bb.h index 83bd771e0b..7bf53ab09c 100644 --- a/gr-blocks/include/gnuradio/blocks/repack_bits_bb.h +++ b/gr-blocks/include/gnuradio/blocks/repack_bits_bb.h @@ -80,6 +80,7 @@ namespace gr { */ static sptr make(int k, int l=8, const std::string &tsb_tag_key="", bool align_output=false, endianness_t endianness=GR_LSB_FIRST); + virtual void set_k_and_l(int k, int l) =0;//callback function for bits per input byte k and bits per output byte l. }; } // namespace blocks |