diff --git a/demod/mod/lms6Xmod.c b/demod/mod/lms6Xmod.c index 5a500f6..00a91e4 100644 --- a/demod/mod/lms6Xmod.c +++ b/demod/mod/lms6Xmod.c @@ -641,7 +641,7 @@ static int get_GPSvel24(gpx_t *gpx) { } // LMS-X -int get_GPSvel16_X(gpx_t *gpx) { +static int get_GPSvel16_X(gpx_t *gpx) { ui8_t *gpsVel_bytes; short vel16; double vx, vy, vz; diff --git a/demod/mod/meisei100mod.c b/demod/mod/meisei100mod.c index ae52ef8..14deaff 100644 --- a/demod/mod/meisei100mod.c +++ b/demod/mod/meisei100mod.c @@ -1,10 +1,22 @@ /* - * big endian forest + * Meisei iMS-100 + * + * sync header: correlation/matched filter + * files: meisei100mod.c demod_mod.c demod_mod.h bch_ecc_mod.c bch_ecc_mod.h + * compile, either (a) or (b): + * (a) + * gcc -c demod_mod.c + * gcc -DINCLUDESTATIC meisei100mod.c demod_mod.o -lm -o meisei100mod + * (b) + * gcc -c demod_mod.c + * gcc -c bch_ecc_mod.c + * gcc meisei100mod.c demod_mod.o bch_ecc_mod.o -lm -o meisei100mod + * + * usage: + * ./meisei100mod --ecc -v * - * Meisei radiosondes * author: zilog80 - * */ /* @@ -83,7 +95,7 @@ e.g. -b --br 2398 #include #include #include -// #include +#include #ifdef CYGWIN #include // cygwin: _setmode() #include