diff options
-rw-r--r-- | gnuradio-runtime/include/gnuradio/thrift_application_base.h | 3 | ||||
-rw-r--r-- | gr-digital/docs/packet_comms.dox | 11 | ||||
-rw-r--r-- | gr-fec/docs/fec.dox | 9 | ||||
-rw-r--r-- | gr-filter/docs/filter.dox | 2 | ||||
-rw-r--r-- | gr-uhd/docs/uhd.dox | 2 | ||||
-rw-r--r-- | gr-uhd/include/gnuradio/uhd/usrp_sink.h | 4 |
6 files changed, 18 insertions, 13 deletions
diff --git a/gnuradio-runtime/include/gnuradio/thrift_application_base.h b/gnuradio-runtime/include/gnuradio/thrift_application_base.h index 7e42e7d50f..4d25029e56 100644 --- a/gnuradio-runtime/include/gnuradio/thrift_application_base.h +++ b/gnuradio-runtime/include/gnuradio/thrift_application_base.h @@ -144,7 +144,8 @@ protected: static const unsigned int d_default_thrift_buffer_size; /*! - * \ref page_logger instances. + * <a href="https://wiki.gnuradio.org/index.php/Logging" target="_blank">Logging</a> + * instances. */ gr::logger_ptr d_logger, d_debug_logger; diff --git a/gr-digital/docs/packet_comms.dox b/gr-digital/docs/packet_comms.dox index 9b9f59fbd7..bce0948301 100644 --- a/gr-digital/docs/packet_comms.dox +++ b/gr-digital/docs/packet_comms.dox @@ -158,9 +158,9 @@ transmitted frame: Because the pulse shape filter up-samples, in packet_tx, we use a \ref gr::blocks::tagged_stream_multiply_length "Tagged Stream Multiply Length Tag block". The resampler block knows nothing about - tagged streams, so when it up-samples, the \ref - page_tagged_stream_blocks "tagged stream block (TSB)" tag value does - not change. We need to change this tag's value, too, and so we use + tagged streams, so when it up-samples, the + <a href="https://wiki.gnuradio.org/index.php/Tagged_Stream_Blocks" target="_blank">tagged stream block (TSB)</a> + tag value does not change. We need to change this tag's value, too, and so we use the multiply length tag block for this purpose. This is helpful when working with UHD devices, like in uhd_packet_tx.grc, because we can explicitly tell the UHD USRP Sink block to expect a tagged stream to @@ -609,8 +609,9 @@ back to the HPD block to guide the payload processing. If the packet formatter parsing operation fails by not getting enough data or if the data is corrupted, it will return false. When the -Packet Parser sees this, it emits a message that just contains a \ref -page_pmt "PMT" False (pmt::PMT_F), which resets the HPD block to start +Packet Parser sees this, it emits a message that just contains a +<a href="https://wiki.gnuradio.org/index.php/Polymorphic_Types_(PMTs)" target="_blank">PMT</a> +False (pmt::PMT_F), which resets the HPD block to start looking for another header trigger event. If the header parsing completes successfully, the HPD block gets a diff --git a/gr-fec/docs/fec.dox b/gr-fec/docs/fec.dox index 16c5ca2394..5aab8e69d1 100644 --- a/gr-fec/docs/fec.dox +++ b/gr-fec/docs/fec.dox @@ -127,8 +127,9 @@ deployments given the three initial FEC coders available. \subsubsection fec_deploy_tag_stream Tagged Stream Deployments -GNU Radio's gr-fec also comes with simple deployments for \ref -page_tagged_stream_blocks blocks. These deployments work similarly to +GNU Radio's gr-fec also comes with simple deployments for +<a href="https://wiki.gnuradio.org/index.php/Tagged_Stream_Blocks" target="_blank">Tagged Stream Blocks</a> +blocks. These deployments work similarly to the normal streaming deployments but fit into a tagged stream system by setting a tagged stream tag to control the frame size. Like all tagged stream blocks, they expect the tag to be located in the stream @@ -170,8 +171,8 @@ deployments given the three initial FEC coders available. \subsubsection fec_deploy_async Asynchronous Deployments The final standard deployment shipped with GNU Radio is for -asynchronous \ref page_msg_passing and handling PDUs: -gr::fec::async_encoder and gr::fec::async_decoder. +asynchronous <a href="https://wiki.gnuradio.org/index.php/Message_Passing" target="_blank">Message Passing</a> +and handling PDUs: gr::fec::async_encoder and gr::fec::async_decoder. Unlike the other deployments, these C++ deployments do not also have an extended Python deployment. Because this deployment uses message diff --git a/gr-filter/docs/filter.dox b/gr-filter/docs/filter.dox index 674e1e3c5a..553ee6348c 100644 --- a/gr-filter/docs/filter.dox +++ b/gr-filter/docs/filter.dox @@ -56,7 +56,7 @@ filter). \li PFB arbitrary resampler (see pfb_arb_resampler.h): performs arbitrary resampling (i.e., using any real number) using the polyphase -filterbank method. \sa \ref pfb_arb_resampler +filterbank method. \sa <a href="https://wiki.gnuradio.org/index.php/Polyphase_Filterbanks" target="_blank">The PFB Arbitrary Resampler Kernel</a> \li Polyphase filterbank (see polyphase_filterbank.h): a set of base classes with standard functions for building many polyphase filterbank diff --git a/gr-uhd/docs/uhd.dox b/gr-uhd/docs/uhd.dox index 5b321c5098..8c28e37e7f 100644 --- a/gr-uhd/docs/uhd.dox +++ b/gr-uhd/docs/uhd.dox @@ -31,7 +31,7 @@ http://files.ettus.com/manual/annotated.html \section uhd_command_syntax Command Syntax The UHD sink and source can be controlled by a message port. These message ports -take commands, which are PMTs formatted as described in \ref msg_passing_commands. +take commands, which are PMTs formatted as described in <a href="https://wiki.gnuradio.org/index.php/Message_Passing" target="_blank">Using messages as commands</a>. There is a legacy format, which will be deprecated in the future, where commands may be tuples, formatted as: diff --git a/gr-uhd/include/gnuradio/uhd/usrp_sink.h b/gr-uhd/include/gnuradio/uhd/usrp_sink.h index 71c408215d..8924d76c47 100644 --- a/gr-uhd/include/gnuradio/uhd/usrp_sink.h +++ b/gr-uhd/include/gnuradio/uhd/usrp_sink.h @@ -43,7 +43,9 @@ class uhd_usrp_sink; * There are multiple ways to do bursty transmission without triggering * underruns: * - Using SOB/EOB tags - * - Using tagged streams (See \ref page_tagged_stream_blocks) + * - Using tagged streams (See <a + * href="https://wiki.gnuradio.org/index.php/Tagged_Stream_Blocks" target="_blank">Tagged + * Stream Blocks</a>) * * The sob and eob (start and end of burst) tag values are pmt booleans. * When present, burst tags should be set to true (pmt::PMT_T). |