minimodem-mirror/src/minimodem.c

438 lines
9.8 KiB
C
Raw Normal View History

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <assert.h>
#include <errno.h>
#include <math.h>
#include <fftw3.h>
2011-05-30 07:22:20 +02:00
#include "simpleaudio.h"
2011-05-26 00:26:13 +02:00
#include "tscope_print.h"
2011-05-30 07:22:20 +02:00
#ifndef MAX
#define MAX(a,b) ((a)>(b)?(a):(b))
#endif
#ifndef MIN
#define MIN(a,b) ((a)<(b)?(a):(b))
#endif
static inline
float
band_mag( fftwf_complex * const cplx, unsigned int band, float scalar )
{
float re = cplx[band][0];
float im = cplx[band][1];
float mag = hypot(re, im) * scalar;
return mag;
}
int main(int argc, char*argv[]) {
2011-05-30 07:22:20 +02:00
int ret = 1;
if ( argc < 2 ) {
2011-05-30 07:22:20 +02:00
fprintf(stderr, "usage: minimodem [filename] baud_rate [ mark_hz space_hz ]\n");
return 1;
}
unsigned char textscope = 0;
int argi = 1;
if ( argi < argc && strcmp(argv[argi],"-s") == 0 ) {
textscope = 1;
argi++;
}
2011-05-30 07:22:20 +02:00
simpleaudio *sa;
char *p;
for ( p=argv[argi]; *p; p++ )
if ( !isdigit(*p) )
break;
if ( *p ) {
sa = simpleaudio_open_source_sndfile(argv[argi]);
argi++;
} else {
sa = simpleaudio_open_source_pulseaudio(argv[0], "bfsk demodulator");
}
if ( !sa )
return 1;
unsigned int sample_rate = simpleaudio_get_rate(sa);
unsigned int nchannels = simpleaudio_get_channels(sa);
unsigned int decode_rate;
decode_rate = atoi(argv[argi++]);
2011-05-29 21:44:10 +02:00
unsigned int band_width;
band_width = decode_rate;
/*
* Bell 103: baud=300 mark=1270 space=1070
* ITU-T V.21: baud=300 mark=1280 space=1080
*/
unsigned int bfsk_mark_f = 1270;
unsigned int bfsk_space_f = 1070;
band_width = 10;
// band_width = 50; /* close enough? */
/*
* Bell 202: baud=1200 mark=1200 space=2200
*/
if ( decode_rate >= 400 ) {
bfsk_mark_f = 1200;
bfsk_space_f = 2200;
band_width = 200;
}
if ( argi < argc ) {
assert(argc-argi == 2);
bfsk_mark_f = atoi(argv[argi++]);
bfsk_space_f = atoi(argv[argi++]);
}
unsigned int bfsk_mark_band = (bfsk_mark_f +(float)band_width/2) / band_width;
unsigned int bfsk_space_band = (bfsk_space_f +(float)band_width/2) / band_width;
if ( bfsk_mark_band == 0 || bfsk_space_band == 0 ) {
fprintf(stderr, __FILE__": mark or space band is at dsp DC\n");
// return 1;
}
if ( bfsk_mark_band == bfsk_space_band ) {
fprintf(stderr, __FILE__": inadequate mark/space separation\n");
return 1;
}
/* Create the FFT plan */
fftwf_plan fftplan;
int fftsize = sample_rate / band_width;
if ( fftsize & 1 )
fprintf(stderr, __FILE__": WARNING: fftsize %u is not even\n", fftsize);
unsigned int nbands = fftsize / 2 + 1;
2011-05-30 07:22:20 +02:00
float *fftin = fftwf_malloc(fftsize * sizeof(float) * nchannels);
2011-05-30 07:22:20 +02:00
fftwf_complex *fftout = fftwf_malloc(nbands * sizeof(fftwf_complex) * nchannels);
/*
* works only for 1 channel:
fftplan = fftwf_plan_dft_r2c_1d(fftsize, fftin, fftout, FFTW_ESTIMATE);
*/
/*
* works for N channels:
*/
fftplan = fftwf_plan_many_dft_r2c(
2011-05-30 07:22:20 +02:00
/*rank*/1, &fftsize, /*howmany*/nchannels,
fftin, NULL, /*istride*/nchannels, /*idist*/1,
fftout, NULL, /*ostride*/1, /*odist*/nbands,
FFTW_ESTIMATE | FFTW_PRESERVE_INPUT );
/* Nb. FFTW_PRESERVE_INPUT is needed for the "shift the input window" trick */
if ( !fftplan ) {
fprintf(stderr, __FILE__": fftwf_plan_dft_r2c_1d() failed\n");
return 1;
}
/*
* Prepare the input sample chunk rate
*/
int nsamples = sample_rate / decode_rate;
2011-05-27 08:24:39 +02:00
2011-05-28 17:55:42 +02:00
#if 0
2011-05-27 08:24:39 +02:00
/* BLACK MAGIC! Run the decoder 1% slow ... */
2011-05-28 17:55:42 +02:00
int nsamples_adjust = nsamples * 0.01;
if ( nsamples_adjust == 0 )
nsamples_adjust = 1;
nsamples += nsamples_adjust;
#elif 1
/* BLACK MAGIC! Run the decoder 1% fast ... */
int nsamples_adjust = nsamples * 0.01;
if ( nsamples_adjust == 0 )
nsamples_adjust = 1;
nsamples -= nsamples_adjust;
2011-05-27 08:24:39 +02:00
#endif
2011-05-29 21:57:15 +02:00
/* normalize fftw output */
float magscalar = 1.0 / ((float)nsamples/2.0);
2011-05-26 00:26:13 +02:00
/* pulseaudio *adds* when downmixing 2 channels to 1; if we're using
* only one channel here, we blindly assume that pulseaudio downmixed
* from 2, and rescale magnitudes accordingly. */
2011-05-30 07:22:20 +02:00
// but sndfile does not do that.
// if ( nchannels == 1 )
// magscalar /= 2.0;
float actual_decode_rate = (float)sample_rate / nsamples;
2011-05-27 08:24:39 +02:00
fprintf(stderr, "### nsamples=%u ", nsamples);
2011-05-29 21:57:15 +02:00
// fprintf(stderr, "### magscalar=%f ", magscalar);
fprintf(stderr, "### baud=%.2f mark=%u space=%u ###\n",
actual_decode_rate,
bfsk_mark_band * band_width,
bfsk_space_band * band_width
);
2011-05-29 21:41:36 +02:00
/* Prepare the text scope output buffer */
// sadly, COLUMNS is not exported by default (?)
char *columns_env = getenv("COLUMNS");
int columns = columns_env ? atoi(columns_env) : 80;
2011-05-30 07:22:20 +02:00
int show_nbands = ( (columns - 2 - 10) / nchannels ) - 1 - 10;
2011-05-29 21:41:36 +02:00
if ( show_nbands > nbands )
show_nbands = nbands;
/*
* Run the main loop
*/
unsigned int bfsk_bits = 0xFFFFFFFF;
unsigned char carrier_detected = 0;
2011-05-27 08:24:39 +02:00
unsigned long long carrier_nsamples = 0;
unsigned long long carrier_nsymbits = 0;
ret = 0;
while ( 1 ) {
2011-05-30 07:22:20 +02:00
bzero(fftin, (fftsize * sizeof(float) * nchannels));
2011-05-30 07:22:20 +02:00
size_t nframes = nsamples;
/* read samples directly into fftin */
if ((ret=simpleaudio_read(sa, fftin, nframes)) <= 0)
break;
2011-05-28 17:55:42 +02:00
carrier_nsamples += nframes;
#define TRICK
#ifdef TRICK
reprocess_audio:
{
}
#endif
fftwf_execute(fftplan);
/* examine channel 0 only */
float mag_mark = band_mag(fftout, bfsk_mark_band, magscalar);
float mag_space = band_mag(fftout, bfsk_space_band, magscalar);
static unsigned char lastbit;
#if 0 // TEST -- doesn't help?, sometimes gets it wrong
// "clarify" mag_mark and mag_space according to whether lastbit
// was a mark or a space ... If lastbit was a mark, then enhance
// space and vice-versa
float clarify_factor = 2.0;
if ( lastbit ) {
mag_space *= clarify_factor;
} else {
mag_mark *= clarify_factor;
}
#endif
float msdelta = mag_mark - mag_space;
2011-05-27 08:24:39 +02:00
#define CD_MIN_TONEMAG 0.1
2011-05-26 02:02:50 +02:00
#define CD_MIN_MSDELTA_RATIO 0.5
/* Detect bfsk carrier */
int carrier_detect /*boolean*/ =
mag_mark + mag_space > CD_MIN_TONEMAG
2011-05-26 01:41:57 +02:00
&&
2011-05-29 21:52:23 +02:00
fabs(msdelta) > CD_MIN_MSDELTA_RATIO * MAX(mag_mark, mag_space)
// fabs(msdelta) > 0.4 * (mag_mark+mag_space)
// fabs(msdelta) > 0.1
;
#ifdef TRICK
// EXCELLENT trick -- fixes 300 baud perfectly
2011-05-27 08:24:39 +02:00
// shift the input window to "catch up" if the msdelta is small
static unsigned int skipped_frames = 0;
2011-05-26 02:02:50 +02:00
if ( ! carrier_detect )
{
if ( nframes == nsamples ) {
2011-05-27 08:24:39 +02:00
#if 1
/* shift by 1/2 the width of one data bit */
2011-05-29 21:52:23 +02:00
// any of these could work ...
2011-05-27 08:24:39 +02:00
// nframes = nsamples / 2;
2011-05-29 21:52:23 +02:00
// nframes = nsamples / 4;
2011-05-27 08:24:39 +02:00
// nframes = nsamples / 8;
// nframes = nsamples / 16;
2011-05-29 21:52:23 +02:00
nframes = 1;
nframes = nframes ? nframes : 1;
2011-05-26 02:02:50 +02:00
#endif
}
2011-05-27 08:24:39 +02:00
// clamp the shift to half the bit width
if ( skipped_frames + nframes > nsamples/2 )
nframes = 0;
2011-05-27 08:24:39 +02:00
else
skipped_frames += nframes;
2011-05-26 02:02:50 +02:00
if ( nframes ) {
2011-05-30 07:22:20 +02:00
size_t framesize = nchannels * sizeof(float);
size_t nbytes = nframes * framesize;
size_t reuse_bytes = nsamples*framesize - nbytes;
memmove(fftin, fftin+nbytes, reuse_bytes);
void *in = fftin + reuse_bytes;
if ((ret=simpleaudio_read(sa, in, nframes)) <= 0)
break;
2011-05-30 07:22:20 +02:00
2011-05-28 17:55:42 +02:00
carrier_nsamples += nframes;
goto reprocess_audio;
}
}
2011-05-26 02:02:50 +02:00
if ( carrier_detect && textscope ) {
if ( skipped_frames )
2011-05-27 08:24:39 +02:00
fprintf(stderr, "<skipped %u (of %u) frames>\n",
skipped_frames, nsamples);
}
#endif
unsigned char bit;
2011-05-26 02:02:50 +02:00
2011-05-26 01:41:57 +02:00
if ( carrier_detect )
{
2011-05-27 08:24:39 +02:00
carrier_nsymbits++;
bit = signbit(msdelta) ? 0 : 1;
#if 0
static unsigned char lastbit_strong = 0;
if ( fabs(msdelta) < 0.5 ) { // TEST
if ( lastbit_strong )
bit = !lastbit;
lastbit_strong = 0;
} else {
lastbit_strong = 1;
}
#endif
}
else
bit = 1;
2011-05-27 08:24:39 +02:00
skipped_frames = 0;
lastbit = bit;
// save 11 bits:
// stop--- v v--- start bit
// v v--- prev stop bit
// 1dddddddd01
bfsk_bits = (bfsk_bits>>1) | (bit << 10);
2011-05-26 01:41:57 +02:00
if ( ! carrier_detect )
{
if ( carrier_detected ) {
2011-05-27 08:24:39 +02:00
float samples_per_bit =
(float)carrier_nsamples / carrier_nsymbits;
float rx_baud_rate =
(float)sample_rate / samples_per_bit;
fprintf(stderr, "###NOCARRIER (bits=%llu rx=%.2f baud) ###\n",
carrier_nsymbits,
rx_baud_rate);
carrier_detected = 0;
}
continue;
}
2011-05-27 08:24:39 +02:00
if ( ! carrier_detected ) {
fprintf(stderr, "###CARRIER###\n");
carrier_nsamples = 0;
carrier_nsymbits = 0;
}
carrier_detected = carrier_detect;
if ( textscope ) {
2011-05-26 00:26:13 +02:00
2011-05-29 21:41:36 +02:00
// printf("%s %c ",
// carrier_detected ? "CD" : " ",
// carrier_detected ? ( bit ? '1' : '0' ) : ' ');
2011-05-26 00:26:13 +02:00
int one_line_mode = 0;
int show_maxmag = 1;
tscope_print(fftout, show_nbands, magscalar,
one_line_mode, show_maxmag);
printf(" ");
2011-05-29 21:57:15 +02:00
int i;
2011-05-29 21:41:36 +02:00
for ( i=(11-1); i>=0; i-- )
printf("%c", bfsk_bits & (1<<i) ? '1' : '0');
printf(" ");
2011-05-27 08:24:39 +02:00
fflush(stdout);
}
if ( ! carrier_detected ) {
2011-05-27 08:24:39 +02:00
if ( textscope ) {
printf("\n");
2011-05-27 08:24:39 +02:00
fflush(stdout);
}
continue;
2011-05-27 08:24:39 +02:00
}
// stop--- v v--- start bit
// v v--- prev stop bit
if ( ( bfsk_bits & 0b10000000011 )
== 0b10000000001 ) { // valid frame: start=space, stop=mark
unsigned char byte = ( bfsk_bits >> 2) & 0xFF;
if ( textscope )
printf("+");
2011-05-27 08:24:39 +02:00
if ( byte == 0xFF ) {
if ( textscope )
printf("idle");
} else {
printf("%c", isspace(byte)||isprint(byte) ? byte : '.');
fflush(stdout);
}
bfsk_bits = 1 << 10;
}
2011-05-27 08:24:39 +02:00
if ( textscope ) {
printf("\n");
2011-05-27 08:24:39 +02:00
fflush(stdout);
}
}
2011-05-30 07:22:20 +02:00
if ( ret != 0 )
fprintf(stderr, "simpleaudio_read: error\n");
simpleaudio_close(sa);
fftwf_free(fftin);
fftwf_free(fftout);
fftwf_destroy_plan(fftplan);
return ret;
}