Age | Commit message (Collapse) | Author |
|
|
|
SWIG/python cannot differentiate the calls set_dc_offset
with an complex number or a boolean paramater.
It seems to take the boolean as a complex number 1 or 0.
Since the overloading is not working right:
renamed set_dc_offset to set_auto_dc_offset
for the boolean enable/disable paramater
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This is useful for re-running the flowgraph,
and avoids the problem of old data on the next run.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The code section that used this variable was removed in
Commit 081497e7 "uhd: work on gr_uhd_source work() function to reduce latency"
|
|
|
|
|
|
|
|
This reverts commit 25b1550dba377b6dc86bee3e6f269a721efee655.
|
|
Add asynchronous message "block" that is independent of normal
gnuradio scheduler. The block instantiates a thread to wait
for asynchronous messages from UHD and encapsulates them in a
gr_message posted into a message queue.
The interface is empty because the block is internally driven
and accessed through the the constructor specified message
queue.
|
|
|
|
|
|
|
|
|
|
|
|
The uhd block implementations now inherit from sync block.
And the redundant constructor in source/sink has been removed.
|
|
Wait on a single packet to become ready, then receive available packets without timeout.
|
|
Its important for multi-channel continuous,
but not wanted in single-channel non-continuous.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|