diff --git a/README.md b/README.md index c112c46..6cdbe0f 100644 --- a/README.md +++ b/README.md @@ -3,20 +3,51 @@ RS #### Wetterballon-Radiosonden 400-406 MHz -Die Decoder erwarten das FM-demodulierte wav-Audio des empfangenen Signals (kann auch mit +* Decoder:
+ (compile: `gcc -lm -o `) + + `RS/rs92`: RS92-SGP, RS92-AGP
+ `RS/rs41`: RS41-SG(P)
+ `RS/dropsonde`: RD94
+ `RS/m10`: M10
+ `RS/dfm`: DFM-06, DFM-09
+ `RS/imet`: iMet-1-AB, iMet-1-RS
+ `RS/c34`: C34, C50
+ `RS/lms6`: LMS6
+ `RS/mk2a`: MkIIa
+ `RS/meisei`: Meisei
+ + `RS/rs_module`: separate Module, z.Z. RS92, RS41
+ + + Die Decoder erwarten das FM-demodulierte wav-Audio des empfangenen Signals (kann auch mit sox gestreamt werden). Die weitere Demodulation ist sehr einfach gehalten (Nulldurchgaenge), so dass die Decodierung empfindlich auf Stoerungen reagiert und ein gutes Signal braucht. -Oft hilft schon, z.B. mit sox einen lowpass-Filter zwischenzuschalten (fuer die C34 wurde DFT -ausprobiert). Je nach Empfangsgeraet oder SDR-Software kann das Signal invertiert sein +Oft hilft schon, z.B. mit sox einen lowpass-Filter zwischenzuschalten (fuer C34/C50 und iMet-1-RS +wird DFT verwendet). Je nach Empfangsgeraet oder SDR-Software kann das Signal invertiert sein (ebenso fuer neuere DFM-09 gegenueber DFM-06). -https://www.youtube.com/user/boulderplex - -http://www.fingers-welt.de/phpBB/viewtopic.php?f=14&t=43&start=525#p50955 -http://www.fingers-welt.de/phpBB/viewtopic.php?f=14&t=43&start=550#p64707 -http://www.fingers-welt.de/phpBB/viewtopic.php?f=14&t=43&start=700#p75202 -http://www.fingers-welt.de/phpBB/viewtopic.php?f=14&t=43&start=1000#p87987 -http://www.fingers-welt.de/phpBB/viewtopic.php?f=14&t=43&start=1000#p88325 -http://www.fingers-welt.de/phpBB/viewtopic.php?f=14&t=43&start=1000#p88845 + `RS/ecc` - error correction codes (Reed-Solomon/BCH)
+ + +* Diverses: + + `RS/IQ`: Beispiele für Behandlung von IQ-Signalen
+ `RS/scan`: einfaches Beispiel, wie man mit rtl_sdr-tools automatisch scannen kann
+ + +* Videos: + + https://www.youtube.com/user/boulderplex + + +* Beiträge: + + http://www.fingers-welt.de/phpBB/viewtopic.php?f=14&t=43&start=525#p50955 + http://www.fingers-welt.de/phpBB/viewtopic.php?f=14&t=43&start=550#p64707 + http://www.fingers-welt.de/phpBB/viewtopic.php?f=14&t=43&start=700#p75202 + http://www.fingers-welt.de/phpBB/viewtopic.php?f=14&t=43&start=1000#p87987 + http://www.fingers-welt.de/phpBB/viewtopic.php?f=14&t=43&start=1000#p88325 + http://www.fingers-welt.de/phpBB/viewtopic.php?f=14&t=43&start=1000#p88845 diff --git a/m10/README.md b/m10/README.md new file mode 100644 index 0000000..1176d0d --- /dev/null +++ b/m10/README.md @@ -0,0 +1,34 @@ + +## Radiosonde M10 + +Tools for decoding M10 radiosonde signals. + +### Files + +* `m10x.c` - M10 decoder + + ##### Compile + `gcc m10x.c -lm -o m10x` + + ##### Usage + `./m10x [options] `
+ * ``: FM-demodulated signal, recorded as wav audio file
+ * `options`:
+ `-r`: output raw data
+ `-v`, `-vv`: additional data/info (velocities, SN, checksum)
+ `-c`: colored output
+ + + ##### Examples + * `./m10x -v 20150701_402MHz.wav`
+ `./m10x -vv -c 20150701_402MHz.wav`
+ `./m10x -r -c 20150701_402MHz.wav`
+ `sox 20150701_402MHz.wav -t wav - lowpass 6000 2>/dev/null | ./m10x -vv -c`
+ + #### + +* `pilotsonde/m12.c` - Pilotsonde + + ##### Compile + `gcc m12.c -lm -o m12` +