diff options
| author | andreas128 <Andreas> | 2017-09-22 16:29:41 +0200 | 
|---|---|---|
| committer | andreas128 <Andreas> | 2017-09-22 16:29:41 +0200 | 
| commit | db612e922cc2d10304d0a742fb096defec70fecc (patch) | |
| tree | a6d4f41b600f265485071cbfeed2e7de470b6fe6 | |
| parent | 7579bd9c1bdc779555895cdcae46dc3361eb9d08 (diff) | |
| download | dabmod-db612e922cc2d10304d0a742fb096defec70fecc.tar.gz dabmod-db612e922cc2d10304d0a742fb096defec70fecc.tar.bz2 dabmod-db612e922cc2d10304d0a742fb096defec70fecc.zip | |
Increase backoff for RX quantization
| -rw-r--r-- | dpd/src/Agc.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/dpd/src/Agc.py b/dpd/src/Agc.py index dcf3066..b83c91e 100644 --- a/dpd/src/Agc.py +++ b/dpd/src/Agc.py @@ -35,7 +35,7 @@ class Agc:      received signal fulfills our desired property, of having       all amplitudes properly quantized.""" -    def __init__(self, measure, adapt, min_rxgain=25, peak_to_median=10): +    def __init__(self, measure, adapt, min_rxgain=25, peak_to_median=20):          assert isinstance(measure, Measure.Measure)          assert isinstance(adapt, Adapt.Adapt)          self.measure = measure | 
