diff options
author | andreas128 <Andreas> | 2017-08-17 16:28:13 +0200 |
---|---|---|
committer | andreas128 <Andreas> | 2017-08-17 16:28:13 +0200 |
commit | 4fe5b4cacad22c84110061cb1cce4c0cf29b79fa (patch) | |
tree | 82c7d94d7301fcd5b4cacb92bf6ad55340a1251d /dpd/main.py | |
parent | 2d70a92c178b4cf7460d09efd93a0e7918781a64 (diff) | |
download | dabmod-4fe5b4cacad22c84110061cb1cce4c0cf29b79fa.tar.gz dabmod-4fe5b4cacad22c84110061cb1cce4c0cf29b79fa.tar.bz2 dabmod-4fe5b4cacad22c84110061cb1cce4c0cf29b79fa.zip |
Fix plotting without DISPLAY
Diffstat (limited to 'dpd/main.py')
-rwxr-xr-x | dpd/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dpd/main.py b/dpd/main.py index d7e2706..854f789 100755 --- a/dpd/main.py +++ b/dpd/main.py @@ -35,7 +35,7 @@ parser.add_argument('--samplerate', default='8192000', parser.add_argument('--coefs', default='dpdpoly.coef', help='File with DPD coefficients, which will be read by ODR-DabMod', required=False) -parser.add_argument('--samps', default='10240', +parser.add_argument('--samps', default='2560', help='Number of samples to request from ODR-DabMod', required=False) |