debian/gnuradio
15 years agoReplaced USRP2 peek() with peek32(), handles endian-swapping if needed
jcorgan [Sun, 28 Dec 2008 17:26:29 +0000 (17:26 +0000)]
Replaced USRP2 peek() with peek32(), handles endian-swapping if needed

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10174 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoBrought back support for notch filtering--both clicky in FFT display, and on
mleech [Sun, 28 Dec 2008 04:17:43 +0000 (04:17 +0000)]
Brought back support for notch filtering--both clicky in FFT display, and on
  the command line.  Temporarily commented-out call to set_bw(), since latest
  trunk has broken it.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10173 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoImplements USRP2 peek() command, allowing arbitrary reads from the internal
jcorgan [Sat, 27 Dec 2008 21:09:26 +0000 (21:09 +0000)]
Implements USRP2 peek() command, allowing arbitrary reads from the internal
Wishbone bus.  Minor fix for USRP2 sync_to_pps() (uses correct packet type.)

Example:

>>> from gnuradio import usrp2
>>> u = usrp2.source_32fc()
>>> u.peek(0x1234, 4) # Read four bytes at offset 0x1234 (code)
(185, 244, 253, 164)
>>>

The return value will be zero length upon error.

The read address must be 32-bit aligned, and only the lower 16 bits are
significant.  The length must be an integral multiple of 4 bytes. There is
currently a read limit of 176 bytes per read; to change requires some additional
firmware changes to allocate a larger reply packet.

WARNING: Trying to read from memory locations not serviced by RAM or by a
Wishbone peripheral may result in a hang requiring a USRP2 power cycle.  The
USRP2 internal memory map is documented in usrp2/firmware/lib/memory_map.h.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10172 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoFix missing set_bw call in new daughterboard API. Reconciled implementations between...
jcorgan [Fri, 26 Dec 2008 19:31:44 +0000 (19:31 +0000)]
Fix missing set_bw call in new daughterboard API.  Reconciled implementations between different boards to return true or false (success).

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10168 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoFix include paths for VPATH build (Michael Dickens). Note, this was one of thoses...
jcorgan [Thu, 25 Dec 2008 20:03:00 +0000 (20:03 +0000)]
Fix include paths for VPATH build (Michael Dickens).  Note, this was one of thoses cases where 'make distcheck' would pass, yet a VPATH would fail.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10167 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoMerged r10071:10164 from features/cppdb-test into trunk. Implements the fully native...
jcorgan [Wed, 24 Dec 2008 08:10:48 +0000 (08:10 +0000)]
Merged r10071:10164 from features/cppdb-test into trunk.  Implements the fully native C++ API for the USRP.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10165 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoMerged eb/gcell-wip2 rev 10130:10152 into trunk.
eb [Mon, 22 Dec 2008 04:24:34 +0000 (04:24 +0000)]
Merged eb/gcell-wip2 rev 10130:10152 into trunk.

This makes several gcell related changes.

{{{
The first two are INCOMPATIBLE CHANGES:

(1) The gcell portion of the code base was reorganized.  As part of that
reorganization, the paths to the include files changed.  They are now
installed under PREFIX/include/gcell instead of directly in PREFIX/include.

This means that all includes of the form:

  #include <gc_foo.h>

should be changed to

  #include <gcell/gc_foo.h>

(2a) If you are directly using gcell-embedspu-libtool or the
$(GCELL_EMBEDSPU_LIBTOOL) variable in your Makefiles, the order of the
two command line arguments was switched.  It's now

  $(GCELL_EMBEDSPU_LIBTOOL) input_file output_file

or equivalently

  $(GCELL_EMBEDSPU_LIBTOOL) $< $@

gcell-embedspu-libtool allows you to convert an SPE executable
into something that libtool will allow you add to a host shared library.

(2b) The name of the symbol created by gcell-embedspu-libtool is now
suffixed with _spx (SPE executable) to reduce the probability of name
collision.  If you have lines like this:

  extern spe_program_handle_t gcell_all;

in your code, you may have to change them to:

  extern spe_program_handle_t gcell_all_spx;

The following changes are enhancements and shouldn't break any
existing code:

(3) We now install two new pkg-config files, gcell.pc and gcell_spu.pc.
These can be used to assist in building gcell code that lives outside
the GNU Radio repository.  The first gives the include and library
paths for the PPE host code, the second is the same info for the the
SPE code.

There is also a new .m4 macro, GR_GCELL, contained in
config/gr_gcell.m4, that uses PKG_CONFIG_MODULES to fish out the
relevant variables.  If you've got standalone code that uses gcell,
you'll probably want to copy this macro (along with our version of
pkg.m4) to your tree and use it.  It sets the following variables:

  GCELL_CFLAGS
  GCELL_CPPFLAGS
  GCELL_INCLUDEDIR
  GCELL_LIBS
  GCELL_SPU_CFLAGS
  GCELL_SPU_CPPFLAGS
  GCELL_SPU_INCLUDEDIR
  GCELL_SPU_LIBS
  GCELL_EMBEDSPU_LIBTOOL

(4) make -j now works in the gcell directory (fixes ticket:242).
}}}

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10153 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoUpdated Sunset/Sunrise functions to latest PyEphem API
mleech [Sun, 21 Dec 2008 02:11:49 +0000 (02:11 +0000)]
Updated Sunset/Sunrise functions to latest PyEphem API

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10147 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agodont check gtk version if first test failed
jblum [Sat, 20 Dec 2008 23:59:15 +0000 (23:59 +0000)]
dont check gtk version if first test failed

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10145 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoMove mblock library include files into separate library. Updates to usrp in-band...
jcorgan [Sat, 20 Dec 2008 20:54:52 +0000 (20:54 +0000)]
Move mblock library include files into separate library.  Updates to usrp in-band code to accommodate.  Tested with out-of-tree mblock application builds.  Trunk passes distcheck.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10144 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agomissing AC_REQUIRE
eb [Fri, 19 Dec 2008 19:37:45 +0000 (19:37 +0000)]
missing AC_REQUIRE

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10129 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoFix pkgconfig file for libgnuradio-audio-alsa
jcorgan [Fri, 19 Dec 2008 06:19:12 +0000 (06:19 +0000)]
Fix pkgconfig file for libgnuradio-audio-alsa

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10128 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoadded frequency sweep capability
matt [Thu, 18 Dec 2008 22:09:45 +0000 (22:09 +0000)]
added frequency sweep capability

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10126 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoadded frequency offset capability. Set to 12.5e6 on TX, 0 on RX for now
matt [Wed, 17 Dec 2008 23:02:59 +0000 (23:02 +0000)]
added frequency offset capability.  Set to 12.5e6 on TX, 0 on RX for now

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10125 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoAdd sync_to_pps to gr-usrp2
jcorgan [Mon, 15 Dec 2008 04:53:29 +0000 (04:53 +0000)]
Add sync_to_pps to gr-usrp2

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10121 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agopps sync works, meets timing
matt [Mon, 15 Dec 2008 04:26:43 +0000 (04:26 +0000)]
pps sync works, meets timing

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10120 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoadd break at end of new case to prevent fallthru. Also cleared up a warning.
matt [Sun, 14 Dec 2008 19:47:11 +0000 (19:47 +0000)]
add break at end of new case to prevent fallthru.  Also cleared up a warning.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10119 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agosynchronized pps, lots of debug pins changed, works, meets timing
matt [Sun, 14 Dec 2008 17:58:24 +0000 (17:58 +0000)]
synchronized pps, lots of debug pins changed, works, meets timing

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10118 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoFix failure with interp > 128
jcorgan [Sun, 14 Dec 2008 01:05:27 +0000 (01:05 +0000)]
Fix failure with interp > 128

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10117 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoImplement sync_to_pps command for USRP2
jcorgan [Sun, 14 Dec 2008 01:01:11 +0000 (01:01 +0000)]
Implement sync_to_pps command for USRP2

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10116 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoreset the phase when we shut down. Aids in sync
matt [Sat, 13 Dec 2008 23:28:58 +0000 (23:28 +0000)]
reset the phase when we shut down.  Aids in sync

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10115 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agosplit test out into a function
matt [Sun, 7 Dec 2008 01:33:50 +0000 (01:33 +0000)]
split test out into a function

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10109 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agomore tests, for ram and sd card
matt [Sun, 7 Dec 2008 01:33:22 +0000 (01:33 +0000)]
more tests, for ram and sd card

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10108 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agominor updates in gr-trellis/examples
anastas [Sat, 6 Dec 2008 19:08:24 +0000 (19:08 +0000)]
minor updates in gr-trellis/examples

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10107 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoimplemented "reset master clock on next PPS" so we can easily sync multiple units...
matt [Fri, 5 Dec 2008 00:36:22 +0000 (00:36 +0000)]
implemented "reset master clock on next PPS" so we can easily sync multiple units without MIMO connections

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10103 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agosend a char to the serial port, but don't wait if the queue is full
matt [Fri, 5 Dec 2008 00:03:29 +0000 (00:03 +0000)]
send a char to the serial port, but don't wait if the queue is full

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10102 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agospeed up the diagnostic signals, they were causing timing problems
matt [Thu, 4 Dec 2008 06:12:51 +0000 (06:12 +0000)]
speed up the diagnostic signals, they were causing timing problems

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10101 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoMerged r9798:9801 from michaelld/memalign into trunk. Passes distcheck on Ubuntu...
jcorgan [Mon, 1 Dec 2008 20:03:38 +0000 (20:03 +0000)]
Merged r9798:9801 from michaelld/memalign into trunk.  Passes distcheck on Ubuntu 8.10.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10098 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agocheck extension on save
jblum [Sun, 30 Nov 2008 23:55:36 +0000 (23:55 +0000)]
check extension on save

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10097 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agodont check that
jblum [Sun, 30 Nov 2008 18:53:29 +0000 (18:53 +0000)]
dont check that

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10096 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoenum
jblum [Sun, 30 Nov 2008 02:58:32 +0000 (02:58 +0000)]
enum

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10091 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agofix
jblum [Fri, 28 Nov 2008 07:14:58 +0000 (07:14 +0000)]
fix

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10082 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agonew preferences
jblum [Fri, 28 Nov 2008 06:51:21 +0000 (06:51 +0000)]
new preferences

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10081 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoblocks window position pref
jblum [Fri, 28 Nov 2008 00:34:51 +0000 (00:34 +0000)]
blocks window position pref

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10079 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoresizable reports window
jblum [Thu, 27 Nov 2008 07:12:15 +0000 (07:12 +0000)]
resizable reports window

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10078 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agogrc gtk version check
jblum [Thu, 27 Nov 2008 00:17:32 +0000 (00:17 +0000)]
grc gtk version check

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10076 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoswitched hotkey handling to gtk accelerators
jblum [Wed, 26 Nov 2008 23:51:43 +0000 (23:51 +0000)]
switched hotkey handling to gtk accelerators

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10075 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agofixing sync routines by wrapping the angle and not clipping it; also opening up the...
trondeau [Sun, 23 Nov 2008 17:10:23 +0000 (17:10 +0000)]
fixing sync routines by wrapping the angle and not clipping it; also opening up the frequency sync range a bit.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10040 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoTom's law: the simpler the function, the more prone I am to make errors.
trondeau [Sun, 23 Nov 2008 16:38:54 +0000 (16:38 +0000)]
Tom's law: the simpler the function, the more prone I am to make errors.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10039 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoclarification for random source
jblum [Sat, 22 Nov 2008 20:03:38 +0000 (20:03 +0000)]
clarification for random source

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10036 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agousrp dual source def typo fix
jblum [Tue, 18 Nov 2008 21:45:31 +0000 (21:45 +0000)]
usrp dual source def typo fix

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10013 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agogrc trellis makefile
jblum [Tue, 18 Nov 2008 06:56:00 +0000 (06:56 +0000)]
grc trellis makefile

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10011 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoadded an example in grc that uses trellis structures
anastas [Tue, 18 Nov 2008 06:03:54 +0000 (06:03 +0000)]
added an example in grc that uses trellis structures

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10010 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoAdded ability to select USRP board to digital examples
trondeau [Mon, 17 Nov 2008 02:38:41 +0000 (02:38 +0000)]
Added ability to select USRP board to digital examples

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10003 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoremoved old python comments
matt [Sun, 16 Nov 2008 20:56:02 +0000 (20:56 +0000)]
removed old python comments

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9999 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agofixed gain calculations rfx900-2400
matt [Sun, 16 Nov 2008 20:55:07 +0000 (20:55 +0000)]
fixed gain calculations rfx900-2400

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9998 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoadded a utility function to get the integer rounded gain
matt [Sun, 16 Nov 2008 20:43:57 +0000 (20:43 +0000)]
added a utility function to get the integer rounded gain

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9997 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoonly change id if not unique
jblum [Sat, 15 Nov 2008 00:23:27 +0000 (00:23 +0000)]
only change id if not unique

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9994 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoadded callbacks to trellis_metrics and trellis_viterbi_combined in grc
anastas [Fri, 14 Nov 2008 00:31:23 +0000 (00:31 +0000)]
added callbacks to trellis_metrics and trellis_viterbi_combined in grc

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9988 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoadded 2tone capability
matt [Thu, 13 Nov 2008 23:14:38 +0000 (23:14 +0000)]
added 2tone capability

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9987 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agogrc check python version
jblum [Thu, 13 Nov 2008 19:15:33 +0000 (19:15 +0000)]
grc check python version

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9986 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoSeveral updates on gr-trellis: 1) new fsm constructor for a joint trellis, 2) Corresp...
anastas [Thu, 13 Nov 2008 15:24:59 +0000 (15:24 +0000)]
Several updates on gr-trellis: 1) new fsm constructor for a joint trellis, 2) Corresponding fsm file examples, 3) added set_TABLE method in viterbi_combined and metrics

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9985 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoproper comparison of vectors; I thought I had already fixed this...
trondeau [Thu, 13 Nov 2008 03:29:54 +0000 (03:29 +0000)]
proper comparison of vectors; I thought I had already fixed this...

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9984 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agotrellis IO fix
jblum [Thu, 13 Nov 2008 03:14:52 +0000 (03:14 +0000)]
trellis IO fix

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9983 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agofixed behavior around VCO changeover point (5.275GHz), and commented out debugging...
matt [Tue, 11 Nov 2008 19:48:52 +0000 (19:48 +0000)]
fixed behavior around VCO changeover point (5.275GHz), and commented out debugging stuff

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9973 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoFix help strings
jcorgan [Tue, 11 Nov 2008 16:03:07 +0000 (16:03 +0000)]
Fix help strings

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9972 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoAdd --fft-size command-line parameter, defaults to original behavior (1024)
jcorgan [Tue, 11 Nov 2008 15:51:23 +0000 (15:51 +0000)]
Add --fft-size command-line parameter, defaults to original behavior (1024)

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9970 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agowrap the return type from gr_enable_realtime_scheduling
eb [Mon, 10 Nov 2008 20:19:39 +0000 (20:19 +0000)]
wrap the return type from gr_enable_realtime_scheduling

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9969 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agomore thorough test
matt [Sun, 9 Nov 2008 22:53:28 +0000 (22:53 +0000)]
more thorough test

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9963 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agohardware control of leds
matt [Sun, 9 Nov 2008 22:52:29 +0000 (22:52 +0000)]
hardware control of leds

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9962 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agohardware control of leds
matt [Sun, 9 Nov 2008 22:51:15 +0000 (22:51 +0000)]
hardware control of leds

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9961 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agomore thorough test
matt [Sun, 9 Nov 2008 21:53:11 +0000 (21:53 +0000)]
more thorough test

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9959 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoMerged r9946:9957 from trondeau/qt into trunk. make distcheck works on F9, Ubuntu...
trondeau [Sun, 9 Nov 2008 17:00:34 +0000 (17:00 +0000)]
Merged r9946:9957 from trondeau/qt into trunk. make distcheck works on F9, Ubuntu 8.04 and 8.10 with and without qt libraries.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9958 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agomoved param input
jblum [Fri, 7 Nov 2008 02:10:17 +0000 (02:10 +0000)]
moved param input

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9948 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoremove connection with drag
jblum [Thu, 6 Nov 2008 23:55:45 +0000 (23:55 +0000)]
remove connection with drag

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9946 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoremoved obsolete test code
eb [Thu, 6 Nov 2008 01:34:01 +0000 (01:34 +0000)]
removed obsolete test code

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9941 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoinject block wrapper path
jblum [Thu, 6 Nov 2008 00:44:17 +0000 (00:44 +0000)]
inject block wrapper path

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9940 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agodo not call is_valid within draw
jblum [Tue, 4 Nov 2008 05:33:08 +0000 (05:33 +0000)]
do not call is_valid within draw

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9927 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoFix issue caused by pkg-config stripping -I/usr/include from --cflags
jcorgan [Mon, 3 Nov 2008 20:35:04 +0000 (20:35 +0000)]
Fix issue caused by pkg-config stripping -I/usr/include from --cflags

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9920 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoMerged r9881:9917 from jcorgan/deb-wip into trunk. Updates Debian/Ubuntu packaging...
jcorgan [Mon, 3 Nov 2008 20:08:39 +0000 (20:08 +0000)]
Merged r9881:9917 from jcorgan/deb-wip into trunk.  Updates Debian/Ubuntu packaging system to build trunk code on Ubuntu 8.10.

Several new trunk components still need debs created.

Impact on non-packaging code:

* Renamed libgr_audio_alsa.so to libgnuradio-audio-alsa.so

* Renamed libusrp_inband.so to libusrp-inband.so

* Added PYTHON_CHECK_MODULE to build system to simplify Python dependency verification

Packaging code updates:

* Updated build-depends and package dependencies to be current with trunk

* Added package for libgruel and libgruel-dev

* Renamed library packages to use simplified names, removing the 0 or 0c2a suffix. This may not follow Debian policy, but we can revisit this if we ever go into official Debian or Ubuntu.

* Remove gr-comedi from packaging

* Restructured sections to eliminate 'contrib'.  Since we're not official Debian, we don't need to deal with the sdcc-nf issue.

* Consolidated usrp firmware packages into corresponding main packages (same as previous).

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9918 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoenable all rfx boards
matt [Fri, 31 Oct 2008 17:35:37 +0000 (17:35 +0000)]
enable all rfx boards

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9901 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoFix (actually a bit of a kludge) for the frequency setting while
eb [Mon, 27 Oct 2008 16:36:52 +0000 (16:36 +0000)]
Fix (actually a bit of a kludge) for the frequency setting while
streaming problem.  You can now set the frequency in usrp2_fft.py
while streaming without dying :-)

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9878 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agobacked out 9874
eb [Mon, 27 Oct 2008 16:33:14 +0000 (16:33 +0000)]
backed out 9874

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9877 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoAdded copyright header and disabled test_004, as it requires pygsl, which is not...
jcorgan [Mon, 27 Oct 2008 15:53:31 +0000 (15:53 +0000)]
Added copyright header and disabled test_004, as it requires pygsl, which is not checked for in configure

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9876 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoCopyright cleanup and fix compiler warnings.
jcorgan [Mon, 27 Oct 2008 15:50:35 +0000 (15:50 +0000)]
Copyright cleanup and fix compiler warnings.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9875 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoAn insufficient attempt to fix the set_freq problem...
eb [Mon, 27 Oct 2008 08:45:43 +0000 (08:45 +0000)]
An insufficient attempt to fix the set_freq problem...

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9874 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoMinor cleanup.
eb [Mon, 27 Oct 2008 08:08:52 +0000 (08:08 +0000)]
Minor cleanup.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9873 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoAdded basic wavelet classifier blocks. GSL is now a prerequisite for
eb [Mon, 27 Oct 2008 07:05:13 +0000 (07:05 +0000)]
Added basic wavelet classifier blocks.  GSL is now a prerequisite for
gnuradio-core.  Merged from eb/frank -r9627:9868 to trunk.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9870 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoAdded optional vlen parameter to vector_source_* and vector_sink_*.
eb [Mon, 27 Oct 2008 07:02:48 +0000 (07:02 +0000)]
Added optional vlen parameter to vector_source_* and vector_sink_*.
Merged from eb/frank 9627:9868 to trunk.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9869 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoRevert erroneous change to usrp2_fft.py
jcorgan [Mon, 27 Oct 2008 03:32:36 +0000 (03:32 +0000)]
Revert erroneous change to usrp2_fft.py

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9864 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoAdds usrp2 example directory, WFM receiver. Default audio rate works out to 32015...
jcorgan [Mon, 27 Oct 2008 03:09:27 +0000 (03:09 +0000)]
Adds usrp2 example directory, WFM receiver.  Default audio rate works out to 32015 Hz, which is close enough, but for ALSA, you can use -O plughw:0,0 to get rid of the warning message.  A resampler would be ideal.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9863 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoFix gain slider for configurations that have no gain control
jcorgan [Mon, 27 Oct 2008 00:22:12 +0000 (00:22 +0000)]
Fix gain slider for configurations that have no gain control

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9862 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoremoved extra indentation. No change in functionality
eb [Mon, 27 Oct 2008 00:20:10 +0000 (00:20 +0000)]
removed extra indentation.  No change in functionality

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9861 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoDeadly printfs turned off... Specified gain ranges for TV Rx and RFX boards.
eb [Sun, 26 Oct 2008 23:50:51 +0000 (23:50 +0000)]
Deadly printfs turned off...  Specified gain ranges for TV Rx and RFX boards.
Still a problem setting the gain;  Firmware takes too long to get back
to service ethernet.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9860 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoUpdate usrp2_fft.py to use updated gr-usrp2. Display is correct now, however, attemp...
jcorgan [Sun, 26 Oct 2008 20:41:23 +0000 (20:41 +0000)]
Update usrp2_fft.py to use updated gr-usrp2.  Display is correct now, however, attempting to change parameters via the controls still isn't working.  But this has been isolated to a libusrp2 issue, not a usrp2_fft.py issue.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9859 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoUpdated usrp2_rx_cfile.py and usrp2_siggen.py to use updated gr-usrp2
jcorgan [Sun, 26 Oct 2008 19:46:59 +0000 (19:46 +0000)]
Updated usrp2_rx_cfile.py and usrp2_siggen.py to use updated gr-usrp2

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9858 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoMerged r9834:9855 from jcorgan/u2-wip into trunk. Catches up gr-usrp2 with the lates...
jcorgan [Sun, 26 Oct 2008 16:05:03 +0000 (16:05 +0000)]
Merged r9834:9855 from jcorgan/u2-wip into trunk.  Catches up gr-usrp2 with the latest changes in libusrp2, adding all the daughterboard accessor functions.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9856 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoMerging qtgui branch-r9068:9837: this ads a qtgui_sink_c and qtgui_sink_f that displa...
trondeau [Sat, 25 Oct 2008 23:29:43 +0000 (23:29 +0000)]
Merging qtgui branch-r9068:9837: this ads a qtgui_sink_c and qtgui_sink_f that displays the time, PSD, and spectrogram plots of a signal put into it. It requires qt4, qwt, and qwtplot3d and has not been tested on OSX.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9853 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoadded real PSD plotting tool with optional spectrogram plot.
trondeau [Sat, 25 Oct 2008 22:11:31 +0000 (22:11 +0000)]
added real PSD plotting tool with optional spectrogram plot.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9846 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agofixing time axes and zoom function
trondeau [Sat, 25 Oct 2008 21:47:50 +0000 (21:47 +0000)]
fixing time axes and zoom function

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9845 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agobugfix also override CPP
nldudok1 [Sat, 25 Oct 2008 21:44:06 +0000 (21:44 +0000)]
bugfix also override CPP

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9844 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoupdating FFT plotting utilities. New file gr_plot_fft.py can plot any data type with...
trondeau [Sat, 25 Oct 2008 21:22:12 +0000 (21:22 +0000)]
updating FFT plotting utilities. New file gr_plot_fft.py can plot any data type with -d flag and gr_plot_fft_c and gr_plot_fft_f just call this one and pass in complex of float data types.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9842 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agou2_rev2 now works again
matt [Thu, 23 Oct 2008 02:02:20 +0000 (02:02 +0000)]
u2_rev2 now works again

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9831 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoadded missing tx_interp and rx_decim proxies
eb [Wed, 22 Oct 2008 16:20:10 +0000 (16:20 +0000)]
added missing tx_interp and rx_decim proxies

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9820 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoadded rx_decim and tx_interp accessors
eb [Wed, 22 Oct 2008 16:18:41 +0000 (16:18 +0000)]
added rx_decim and tx_interp accessors

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9819 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoAdded methods to query daughterboard parameters. Merged eb/u2-wip2
eb [Wed, 22 Oct 2008 00:56:40 +0000 (00:56 +0000)]
Added methods to query daughterboard parameters.  Merged eb/u2-wip2
-r9804:9814 into trunk; initialized dacmux in firmware.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9816 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agomake rev2 compile again
matt [Wed, 22 Oct 2008 00:29:15 +0000 (00:29 +0000)]
make rev2 compile again

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9815 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agosimplification
jblum [Sun, 19 Oct 2008 07:51:24 +0000 (07:51 +0000)]
simplification

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9809 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agothis code was working, but how was unclear. Now it still works, but should be clearer.
matt [Sun, 19 Oct 2008 02:38:12 +0000 (02:38 +0000)]
this code was working, but how was unclear.  Now it still works, but should be clearer.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9808 221aa14e-8319-0410-a670-987f0aec2ac5

15 years agoadded in mux for DACs
matt [Sat, 18 Oct 2008 23:33:12 +0000 (23:33 +0000)]
added in mux for DACs

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9807 221aa14e-8319-0410-a670-987f0aec2ac5