A 1400 bit/s (nominal) Frequency Division Multiplexed Digital Voice (FDMDV) modem based on FreeDV 1600 Specification. Used for FreeDV 1600.
The FDMDV modem was first implemented in GNU Octave, then ported to C. Algorithm development is generally easier in Octave, but for real-time work we need the C version. Automated units tests ensure the operation of the Octave and C versions are identical.
Built as part of codec2, see README for build instructions.
-
Generate some test bits and modulate them:
$ cd codec2/build_linux/src $ ./fdmdv_get_test_bits test.c2 1400 $ ./fdmdv_mod test.c2 test.raw $ play -t .s16 -r 8000 test.raw
-
Two seconds of test frame data modulated and sent out of sound device:
$ ./fdmdv_get_test_bits - 2800 | ./fdmdv_mod - - | play -t .s16 -r 8000 -
-
Send 14000 modulated bits (10 seconds) to the demod and count errors:
$ ./fdmdv_get_test_bits - 14000 | ./fdmdv_mod - - | ./fdmdv_demod - - 14 demod_dump.txt | ./fdmdv_put_test_bits - bits 13664 errors 0 BER 0.0000
Use Octave to look at plots of 1 second (1400 bits) of modem operation:
$ cd codec2/octave $ octave-cli octave:1> fdmdv_demod_c("../build_linux/src/demod_dump.txt",14000)
-
Test with timing slips due to sample clock offset of 1000ppm:
$ ./fdmdv_get_test_bits - 30000 | ./fdmdv_mod - - | sox -t raw -t .s16 -r 8000 - -t .s16 -r 7990 - | ./fdmdv_demod - - 14 demod_dump.txt | ./fdmdv_put_test_bits - octave:98> fdmdv_demod_c("../build_linux/src/demod_dump.txt",28000) 27552 bits 0 errors BER: 0.0000
-
Run Octave simulation of entire modem and AWGN channel:
$ cd codec2/octave $ octave-cli octave:1> fdmdv_ut
File | Description |
---|---|
src/fdmdv_mod.c | C version of modulator that takes a file of bits and converts it to a raw file of modulated samples |
src/fdmdv_demod.c | C version of demodulator that takes a raw file of modulated samples and outputs a file of bits. Optionally dumps demod states to a text file which can be plotted using the Octave script fdmdv_demod_c.m |
src/codec2_fdmdv.h | Header file that exposes FDMDV C API functions |
src/fdmdv.c | C functions that implement the FDMDV modem |
src/fdmdv-internal.h | Internal states and constants for FDMDV modem, shouldn't be exposed to application program |
unittest/tfdmdv.c | Used to conjunction with unittest/tfdmdv.m to automatically test C FDMDV functions against Octave versions |
Note these require some Octave packages to be installed, see README
File | Description |
---|---|
fdmdv.m | Functions and variables that implement the Octave version of the FDMDV modem |
fdmdv_ut.m | Unit test for fdmdv Octave code, useful while developing algorithm. Includes tx/rx plus basic channel simulation |
fdmdv_mod.m | Octave version of modulator that outputs a raw file. The modulator is driven by a test frame of bits. This can then be played over a real channel or through a channel simulator like PathSim. The sample rate can be changed using "sox" to simulate differences in tx/rx sample clocks |
fdmdv_demod.m | Demodulator program that takes a raw file as input, and works out the bit error rate using known test frames. Can be used to test the demod performance with off-air signals, or signals that have been passed through a channel simulator |
fdmdv_demod_c.m | Takes an output text file from the C demod fdmdv_demod.c and produces plots and measures BER. Useful for evaluating fdmdv_demod.c performance. The plots produced are identical to the Octave version fdmdv_demod.m, allowing direct comparison of the C and Octave versions |
tfdmdv.m | Automatic tests that compare the Octave and C versions of the FDMDV modem functions. First run unittest/tfdmdv, this will generate a text file with test vectors from the C version. Then run the Octave script tfdmdv and it will generate Octave versions of the test vectors and compare each vector with the C equivalent. It plots the vectors and errors (green). It also produces an automatic checklist based on test results. If the Octave or C modem code is changed, this script should be used to ensure the C and Octave versions remain identical. This process has been wrapped up in the ctest -R test_FDMDV_modem_octave_port . |
-
Typical fdmdv_ut run:
octave:6> fdmdv_ut Eb/No (meas): 7.30 (8.29) dB bits........: 2464 errors......: 20 BER.........: 0.0081 PAPR........: 13.54 dB SNR.........: 4.0 dB
It also outputs lots of nice plots that show the operation of the modem.
For a 1400 bit/s DQPSK modem we expect about 1% BER for Eb/No = 7.3dB, which corresponds to SNR = 4dB (3kHz noise BW). The extra dB of measured power is due to the DBPSK pilot. Currently the noise generation code doesn't take the pilot power into account, so in this example the real SNR is actually 5dB.
-
To generate 10 seconds of modulated signal:
octave:8> fdmdv_mod("test.raw",1400*10);
To demodulate 2 seconds of the test.raw file generated above:
octave:9> fdmdv_demod("test.raw",1400*2); 2464 bits 0 errors BER: 0.0000
It also produces several plots showing the internal states of the demod. Useful for debugging and observing what happens with various channels.