diff options
Diffstat (limited to 'gr-blocks/include/gnuradio/blocks/lfsr_32k_source_s.h')
-rw-r--r-- | gr-blocks/include/gnuradio/blocks/lfsr_32k_source_s.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/gr-blocks/include/gnuradio/blocks/lfsr_32k_source_s.h b/gr-blocks/include/gnuradio/blocks/lfsr_32k_source_s.h index 0d13eafed7..390d1ed9f3 100644 --- a/gr-blocks/include/gnuradio/blocks/lfsr_32k_source_s.h +++ b/gr-blocks/include/gnuradio/blocks/lfsr_32k_source_s.h @@ -28,29 +28,29 @@ #include <gnuradio/sync_block.h> namespace gr { - namespace blocks { +namespace blocks { + +/*! + * \brief LFSR pseudo-random source with period of 2^15 bits (2^11 shorts) + * \ingroup misc_blk + * + * \details + * This source is typically used along with gr::blocks::check_lfsr_32k_s to + * test the USRP using its digital loopback mode. + */ +class BLOCKS_API lfsr_32k_source_s : virtual public sync_block +{ +public: + // gr::blocks::lfsr_32k_source_s::sptr + typedef boost::shared_ptr<lfsr_32k_source_s> sptr; /*! - * \brief LFSR pseudo-random source with period of 2^15 bits (2^11 shorts) - * \ingroup misc_blk - * - * \details - * This source is typically used along with gr::blocks::check_lfsr_32k_s to - * test the USRP using its digital loopback mode. + * \brief Make a LFSR 32k source block. */ - class BLOCKS_API lfsr_32k_source_s : virtual public sync_block - { - public: - // gr::blocks::lfsr_32k_source_s::sptr - typedef boost::shared_ptr<lfsr_32k_source_s> sptr; - - /*! - * \brief Make a LFSR 32k source block. - */ - static sptr make(); - }; + static sptr make(); +}; - } /* namespace blocks */ +} /* namespace blocks */ } /* namespace gr */ #endif /* INCLUDED_GR_LFSR_32K_SOURCE_S_H */ |