| 262 | kaklik | 1 | ; Specify a file into which sidd will write messages.  
 | 
        
           |  |  | 2 | logfile ./sidd.log
 | 
        
           |  |  | 3 |   | 
        
           |  |  | 4 | ; The input device and mixer
 | 
        
           |  |  | 5 | device /dev/dsp
 | 
        
           |  |  | 6 | mixer /dev/mixer
 | 
        
           |  |  | 7 |   | 
        
           |  |  | 8 | ; Specify the mode of operation - stereo or mono.  In stereo mode,
 | 
        
           |  |  | 9 | ; sidd will run two independent monitors, each with its own output file.
 | 
        
           |  |  | 10 |   | 
        
           |  |  | 11 | mode stereo
 | 
        
           |  |  | 12 |   | 
        
           |  |  | 13 | ; The requested sample rate.  The software will use the closest
 | 
        
           |  |  | 14 | ; setting available from the soundcard.
 | 
        
           |  |  | 15 | rate 48000
 | 
        
           |  |  | 16 |   | 
        
           |  |  | 17 | ; Sample size, 8 or 16 bits.  16 bits is strongly recommended, 8 bit is
 | 
        
           |  |  | 18 | ; provided in case your soundcard or driver doesn't do 16. 
 | 
        
           |  |  | 19 |   | 
        
           |  |  | 20 | bits 16
 | 
        
           |  |  | 21 |   | 
        
           |  |  | 22 | ; Number of frequency bins to use.  The FFT size is 2*bins and the program
 | 
        
           |  |  | 23 | ; will issue an output record every (2*bins)/rate seconds.
 | 
        
           |  |  | 24 | bins 2048
 | 
        
           |  |  | 25 |   | 
        
           |  |  | 26 | ; Line input gains, left and right.  If using mono, set them both the same.
 | 
        
           |  |  | 27 | ; Range is 0 to 100.  The logfile will report the actual values set, which 
 | 
        
           |  |  | 28 | ; may differ a little.
 | 
        
           |  |  | 29 | gain line 77 100
 | 
        
           |  |  | 30 |   | 
        
           |  |  | 31 | ; Overall input gains, comments as above.
 | 
        
           |  |  | 32 | gain overall 86 100
 | 
        
           |  |  | 33 |   | 
        
           |  |  | 34 | ; Overall record level, comments as above.
 | 
        
           |  |  | 35 | ;; gain record 100 100
 | 
        
           |  |  | 36 |   | 
        
           |  |  | 37 | ; Specify a directory to contain daily data files.  Use '.' for the
 | 
        
           |  |  | 38 | ; current directory.   Output files will be datadir/yymmdd.dat when running
 | 
        
           |  |  | 39 | ; in mono, otherwise datadir/yymmdd.left.dat and datadir/yymmdd.right.dat
 | 
        
           |  |  | 40 | datadir .
 | 
        
           |  |  | 41 |   | 
        
           |  |  | 42 | ; Enable real time scheduling of sidd.  Recommended so that soundcard buffers
 | 
        
           |  |  | 43 | ; are read promptly, which means minimum latency before each fft buffer is
 | 
        
           |  |  | 44 | ; timestamped. You have to be running as root for this to work.
 | 
        
           |  |  | 45 | sched high
 | 
        
           |  |  | 46 |   | 
        
           |  |  | 47 | ; Specify the email address of whoever is to get any bad news.
 | 
        
           |  |  | 48 | ; mail someone@someplace
 | 
        
           |  |  | 49 |   | 
        
           |  |  | 50 | ; The loss-of-signal warning threshold and time delay.  If the input
 | 
        
           |  |  | 51 | ; signal peak level (0-1.0) falls below the given threshold for more than
 | 
        
           |  |  | 52 | ; the delay time, a warning will be issued.  The threshold applies to both
 | 
        
           |  |  | 53 | ; left and right in stereo mode, on the assumption that you've set the gains
 | 
        
           |  |  | 54 | ; so that the signal levels are about the same anyway.
 | 
        
           |  |  | 55 | los 0.06 5
 | 
        
           |  |  | 56 |   | 
        
           |  |  | 57 | ; Specify a file into which spectrum data will regularly be written.  
 | 
        
           |  |  | 58 | ; This file is overwritten with a fresh spectrum roughly every 
 | 
        
           |  |  | 59 | ; 100 * 2 * bins/rate seconds.  The spectrum file contains three space
 | 
        
           |  |  | 60 | ; separated columns: bin centre frequency (Hz) and the average power
 | 
        
           |  |  | 61 | ; in the bin (relative), for the left and right channels.  In mono mode,
 | 
        
           |  |  | 62 | ; there are just two columns
 | 
        
           |  |  | 63 | spectrum /tmp/sidspec 100
 | 
        
           |  |  | 64 |   | 
        
           |  |  | 65 | ; Specify the channels to monitor.  The ident field is not actually used by
 | 
        
           |  |  | 66 | ; sidd.
 | 
        
           |  |  | 67 | ;
 | 
        
           |  |  | 68 | ;   ident from   to
 | 
        
           |  |  | 69 | band 18k3HWU 18200 18400 ; Le Blanc, France, 46:37N 001:05E 162.8 deg 508.6 miles
 | 
        
           |  |  | 70 | band 19k6GBZ 19480 19680 ; Anthorn, UK 54:54n 003:18W 329.6 deg 96.4 miles
 | 
        
           |  |  | 71 | band 22k1GBZ 22050 22150 ; Skelton, UK,  54:42:24N 2:53:06W 335.0 deg 76.7 miles 
 | 
        
           |  |  | 72 | band 20k3ICV 20190 20340 ; Tavolara, Italy, 40:55N 009:45E 143.4 deg 1038.8 miles
 | 
        
           |  |  | 73 | band B1 20800 21000 ; Background channel
 | 
        
           |  |  | 74 | band B2 22650 22850 ; Background channel
 | 
        
           |  |  | 75 |   |