From 64ef9fe9870bc5502f2f4c1ad0364e01304a3436 Mon Sep 17 00:00:00 2001 From: Vincent Date: Thu, 27 Dec 2018 16:18:54 +0100 Subject: [PATCH] Create README.md --- m10/README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 m10/README.md diff --git a/m10/README.md b/m10/README.md new file mode 100644 index 0000000..d290d86 --- /dev/null +++ b/m10/README.md @@ -0,0 +1,27 @@ + +## Radiosonde M10 + +#### Compile + `g++ -O M10.cpp M10Decoder.cpp M10GeneralParser.cpp M10GTopParser.cpp M10PtuParser.cpp -o m10` + +#### Usage +`./m10 [options] filename`
+ * filename needs to be in wav format and blank or - for stdin
+ * `options`:
+ `-v, --verbose`: Display even when CRC is wrong
+ `-R`: Show result at the end decoded/total
+ `-b`: Try alternative method after main method if it failed, recommended
+ `--ch2`: Decode the second channel
+
+ +#### Examples + Running from file : + * `./m10 -b -R 20181227.wav` + + Running with sox on live audio + * `sox -t oss /dev/dsp -t wav - 2>/dev/null | ./m10 -b` + + It can also run on windows, use Cygwin Terminal if you want to use sox. + +
+This software is a C++ adaptation of https://github.com/rs1729/RS/blob/master/m10 with improvement to the decoding performances.