[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] r3636 - gnuradio/branches/developers/trondeau/digital-
From: |
trondeau |
Subject: |
[Commit-gnuradio] r3636 - gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl |
Date: |
Mon, 25 Sep 2006 12:07:36 -0600 (MDT) |
Author: trondeau
Date: 2006-09-25 12:07:36 -0600 (Mon, 25 Sep 2006)
New Revision: 3636
Modified:
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/dbpsk.py
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/dqpsk.py
Log:
updated dbpsk and dqpsk to test new agc
Modified:
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/dbpsk.py
===================================================================
---
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/dbpsk.py
2006-09-25 18:06:51 UTC (rev 3635)
+++
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/dbpsk.py
2006-09-25 18:07:36 UTC (rev 3636)
@@ -238,7 +238,7 @@
self.pre_scaler = gr.multiply_const_cc(scale) # scale the signal
from full-range to +-1
#self.agc = gr.agc2_cc(6e-1, 6e-1, 1, 1, 1000)
#self.agc = gr.feedforward_agc_cc(500, 1)
- self.agc = gr.agc3_cc(0.5, 1)
+ self.agc = gr.agc_log_cc(0.5, 1)
# Costas loop (carrier tracking)
# FIXME: need to decide how to handle this more generally; do we pull
it from higher layer?
Modified:
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/dqpsk.py
===================================================================
---
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/dqpsk.py
2006-09-25 18:06:51 UTC (rev 3635)
+++
gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl/dqpsk.py
2006-09-25 18:07:36 UTC (rev 3636)
@@ -235,7 +235,7 @@
scale = (1.0/16384.0)
self.pre_scaler = gr.multiply_const_cc(scale) # scale the signal
from full-range to +-1
#self.agc = gr.agc2_cc(6e-1, 6e-1, 1, 1, 1000)
- self.agc = gr.agc3_cc(0.5, 1)
+ self.agc = gr.agc_log_cc(0.5, 1)
# Costas loop (carrier tracking)
# FIXME: need to decide how to handle this more generally; do we pull
it from higher layer?
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Commit-gnuradio] r3636 - gnuradio/branches/developers/trondeau/digital-wip2/gnuradio-core/src/python/gnuradio/blksimpl,
trondeau <=