diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-01-24 11:13:31 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-01-24 11:13:31 +0100 |
commit | c060308464428b201f55b9863787f3617af8a2bd (patch) | |
tree | e986493be5f1bcb9a375c93d17246777a7b8ed65 /doc | |
parent | 109d40f1e598f9d122a91ad0267e6ce199b174a4 (diff) | |
parent | 782bb1624b3ac9d340cb12f2ca52b549c64c23e5 (diff) | |
download | dabmod-c060308464428b201f55b9863787f3617af8a2bd.tar.gz dabmod-c060308464428b201f55b9863787f3617af8a2bd.tar.bz2 dabmod-c060308464428b201f55b9863787f3617af8a2bd.zip |
Merge branch 'next'
Diffstat (limited to 'doc')
-rw-r--r-- | doc/example.ini | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/doc/example.ini b/doc/example.ini index 3c81c04..43adacb 100644 --- a/doc/example.ini +++ b/doc/example.ini @@ -113,11 +113,22 @@ filtertapsfile=simple_taps.txt output=uhd [fileoutput] -; The file output writes I/Q float values (i.e. complex float) +; Two output formats are supported: In the default mode, +; the file output writes I/Q float values (i.e. complex float) ; to the file. The I and Q samples can take values up to ; 100000 in absolute magnitude with gainmode FIX. ; With gainmode VAR, they should never exceed 50000. ; With gainmode MAX, thet are limited to 32767. +;format=complexf +; +; When the format is set to s8, the output writes I/Q 8-bit +; signed integers, where the magnitude is multiplied by 128/50000 +; effectively mapping the gainmode VAR range of -50000 -- 50000 +; to -128 -- 128. For other gainmodes, use the digital_gain setting +; to make sure you don't create clipping. +;format=s8 + +; The output file: filename=/dev/stdout [uhdoutput] |