mod: update compile info

pull/18/head
Zilog80 2019-12-11 17:09:03 +01:00
rodzic 1860fab55d
commit 634919db1d
2 zmienionych plików z 7 dodań i 4 usunięć

Wyświetl plik

@ -1,7 +1,9 @@
## Radiosonde decoders
alternative decoders using cross-correlation for better header-synchronization
alternative decoders using cross-correlation for better header-synchronization <br />
NOTE: more recent decoders are here: [RS/demod/mod/](https://github.com/rs1729/RS/tree/master/demod/mod)
#### Files

Wyświetl plik

@ -6,7 +6,7 @@ alternative decoders using cross-correlation for better header-synchronization
#### Files
* `demod_mod.c`, `demod_mod.h`, <br />
`rs41mod.c`, `rs92mod.c`, `dfm09mod.c`, `m10mod.c`, `lms6mod.c`, <br />
`rs41mod.c`, `rs92mod.c`, `dfm09mod.c`, `m10mod.c`, `lms6mod.c`, `lms6Xmod.c`, `meisei100mod.c`, <br />
`bch_ecc_mod.c`, `bch_ecc_mod.h`
#### Compile
@ -15,13 +15,14 @@ alternative decoders using cross-correlation for better header-synchronization
`gcc rs41mod.c demod_mod.o bch_ecc_mod.o -lm -o rs41mod` <br />
`gcc dfm09mod.c demod_mod.o -lm -o dfm09mod` <br />
`gcc m10mod.c demod_mod.o -lm -o m10mod` <br />
`gcc lms6mod.c demod_mod.o -lm -o lms6mod` <br />
`gcc lms6Xmod.c demod_mod.o bch_ecc_mod.o -lm -o lms6Xmod` <br />
`gcc meisei100mod.c demod_mod.o bch_ecc_mod.o -lm -o meisei100mod` <br />
`gcc rs92mod.c demod_mod.o bch_ecc_mod.o -lm -o rs92mod` (needs `RS/rs92/nav_gps_vel.c`)
#### Usage/Examples
`./rs41mod --ecc2 --crc -vx --ptu <audio.wav>` <br />
`./dfm09mod --ecc -v --ptu <audio.wav>` (add `-i` for dfm06)<br />
`./m10mod --dc -vv --ptu -c <audio.wav>` <br />
`./lms6mod --vit --ecc -v <audio.wav>` <br />
`./lms6Xmod --vit --ecc -v <audio.wav>` <br />