diff options
author | Tom Rondeau | 2011-07-30 15:57:23 -0400 |
---|---|---|
committer | Tom Rondeau | 2011-07-30 15:57:23 -0400 |
commit | a3551b0a34b02fcdb0f339b3bdb16b31c47dc1a3 (patch) | |
tree | a28475446918ad565cffc6642b09b2ef26dbb5cf | |
parent | 3a7aaf7885dd5c2014a090ce197b317dcd99cad5 (diff) | |
download | gnuradio-a3551b0a34b02fcdb0f339b3bdb16b31c47dc1a3.tar.gz gnuradio-a3551b0a34b02fcdb0f339b3bdb16b31c47dc1a3.tar.bz2 gnuradio-a3551b0a34b02fcdb0f339b3bdb16b31c47dc1a3.zip |
digital: cut down number of samples in constellation_receiver QA code to make shorter test time.
-rwxr-xr-x | gr-digital/python/qa_constellation_receiver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-digital/python/qa_constellation_receiver.py b/gr-digital/python/qa_constellation_receiver.py index cb4a0c10e..79dded8ba 100755 --- a/gr-digital/python/qa_constellation_receiver.py +++ b/gr-digital/python/qa_constellation_receiver.py @@ -37,7 +37,7 @@ random.seed(1239) # TESTING PARAMETERS # The number of symbols to test with. # We need this many to let the frequency recovery block converge. -DATA_LENGTH = 200000 +DATA_LENGTH = 10000 # Test fails if fraction of output that is correct is less than this. REQ_CORRECT = 0.8 |