Difference between revisions of "Gr-baz"

From SpenchWiki
Jump to: navigation, search
(delay)
Line 17: Line 17:
 
Before using various blocks in gr-baz, you must apply at least some of the [[GNU Radio Patches|patches]] contained in this directory to your GNU Radio source tree. For example: you must update gr_udp_source if you wish to use it as a [[BorIP]] client.
 
Before using various blocks in gr-baz, you must apply at least some of the [[GNU Radio Patches|patches]] contained in this directory to your GNU Radio source tree. For example: you must update gr_udp_source if you wish to use it as a [[BorIP]] client.
  
== lib (C++) ==
+
== [http://svn.spench.net/main/gr-baz/lib/ lib] (C++) ==
  
=== delay ===
+
=== [http://svn.spench.net/main/gr-baz/lib/baz_delay.cc delay] ===
  
 
Unlike the original gr_delay block that has a fixed delay, this allows for a ''variable'' delay that can be changed at runtime. The delay can be positive or negative. If any padding is required, it uses the value of the last sample.
 
Unlike the original gr_delay block that has a fixed delay, this allows for a ''variable'' delay that can be changed at runtime. The delay can be positive or negative. If any padding is required, it uses the value of the last sample.
  
=== pow_cc ===
+
=== [http://svn.spench.net/main/gr-baz/lib/baz_pow_cc.cc pow_cc] ===
  
=== print_char ===
+
=== [http://svn.spench.net/main/gr-baz/lib/baz_print_char.cc print_char] ===
  
=== puncture_bb/depuncture_ff ===
+
=== [http://svn.spench.net/main/gr-baz/lib/baz_puncture_bb.cc puncture_bb]/[http://svn.spench.net/main/gr-baz/lib/baz_depuncture_ff.cc depuncture_ff] ===
  
=== swap_ff ===
+
=== [http://svn.spench.net/main/gr-baz/lib/baz_swap_ff.cc swap_ff] ===
  
=== test_counter_cc ===
+
=== [http://svn.spench.net/main/gr-baz/lib/baz_test_counter_cc.cc test_counter_cc] ===
  
=== unpacked_to_packed_bb ===
+
=== [http://svn.spench.net/main/gr-baz/lib/baz_unpacked_to_packed_bb.cc unpacked_to_packed_bb] ===
  
=== agc_cc ===
+
=== [http://svn.spench.net/main/gr-baz/lib/baz_agc_cc.cc agc_cc] ===
  
== python ==
+
== [http://svn.spench.net/main/gr-baz/python/ python] ==
  
=== borip ===
+
=== [http://svn.spench.net/main/gr-baz/python/borip.py borip] ===
  
=== auto_fec ===
+
=== [http://svn.spench.net/main/gr-baz/python/auto_fec.py auto_fec] ===
  
=== eye ===
+
=== [http://svn.spench.net/main/gr-baz/python/eye.py eye] ===
  
=== facsink ===
+
=== [http://svn.spench.net/main/gr-baz/python/facsink.py facsink] ===
  
== grc ==
+
== [http://svn.spench.net/main/gr-baz/grc/ grc] ==
  
 
GRC XML block definitions for:
 
GRC XML block definitions for:
Line 73: Line 73:
 
* [http://svn.spench.net/main/gr-baz/grc/Port.py.diff Port.py.diff]
 
* [http://svn.spench.net/main/gr-baz/grc/Port.py.diff Port.py.diff]
  
== apps ==
+
== [http://svn.spench.net/main/gr-baz/apps/ apps] ==
  
=== am_fft ===
+
=== [http://svn.spench.net/main/gr-baz/apps/am_fft.py am_fft] ===
  
 
Same functionality as usrp_fft.py, however the AM (magnitude) signal is shown instead of the original complex one.
 
Same functionality as usrp_fft.py, however the AM (magnitude) signal is shown instead of the original complex one.
  
=== usrp_fac ===
+
=== [http://svn.spench.net/main/gr-baz/apps/usrp_fac.py usrp_fac] ===
  
 
Stand-alone app for using the Fast Auto-correlation Sink.
 
Stand-alone app for using the Fast Auto-correlation Sink.

Revision as of 11:18, 24 March 2012

General

NOTE: A few components will not work (e.g. BorIP client) without applying certain patches to your GNU Radio source. Please see below.

The module name is baz, so in Python one would write:

baz.<block>(args)

To import a file (e.g. borip):

from baz import <file>

Components

patch

Before using various blocks in gr-baz, you must apply at least some of the patches contained in this directory to your GNU Radio source tree. For example: you must update gr_udp_source if you wish to use it as a BorIP client.

lib (C++)

delay

Unlike the original gr_delay block that has a fixed delay, this allows for a variable delay that can be changed at runtime. The delay can be positive or negative. If any padding is required, it uses the value of the last sample.

pow_cc

print_char

puncture_bb/depuncture_ff

swap_ff

test_counter_cc

unpacked_to_packed_bb

agc_cc

python

borip

auto_fec

eye

facsink

grc

GRC XML block definitions for:

  • agc: AGC (Baz) - this is unfinished
  • auto_fec: Auto FEC
  • borip_source: BorIP Source
  • delay: Variable Delay
  • puncture_bb/depuncture_ff: Puncture/Depuncture
  • pow_cc: Power
  • swap_ff: Swap
  • test_counter_cc: Test Counter
  • eye: Eye Diagram
  • facsink: Fast AutoCorrelation Sink
  • gr_mpsk_receiver_debug_cc: MPSK Receiver (Debug)
    • Requires appropriate patch to gr_mpsk_receiver_debug.cc

Also, this contains patches for GRC to enable 'any' block support. This enables you to use raw GNU Radio blocks by typing in the necessary Python function to create the block (without a dedicated GRC XML block definition). For example: I use it with baz.print_char

  • baz_any_source: Any Block Source (for source blocks)
  • baz_any_sink: Any Block Sink (for sink blocks)
  • baz_any: Any Block (for blocks with I/O)

You can either apply the following two patches, OR apply one from the patch page:

apps

am_fft

Same functionality as usrp_fft.py, however the AM (magnitude) signal is shown instead of the original complex one.

usrp_fac

Stand-alone app for using the Fast Auto-correlation Sink.