diff options
-rw-r--r-- | AUTHORS | 7 | ||||
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | README.md | 22 | ||||
-rw-r--r-- | configure.ac | 2 |
4 files changed, 34 insertions, 9 deletions
@@ -10,3 +10,10 @@ Matthias P. Braendli <matthias [at] mpb [dot] li> - Improvements in logging (log to file, to syslog) - ZeroMQ ETI input - Telnet remote-control + - ZeroMQ I/Q output + - I/Q conversion to signed 8-bit + - ARM support + +Jörgen Scott + - ZeroMQ remote control + - Static delay offset @@ -1,6 +1,18 @@ This file contains information about the changes done to the ODR-DabMod in this repository +2015-04-10: Matthias P. Braendli <matthias@mpb.li> + (v0.5.2) + * odr-dabmod: + Merge static delay parameter and ZeroMQ remote control. + Add max_frames_queued option for ZeroMQ input. + Restart modulator on FCT discontinuity or ZeroMQ input + buffer overrun. + Improve error messages and documentation. + Add ZeroMQ output REP socket type for interconnection with + GNURadio. + Fix license text in usage view. + 2015-01-24: Matthias P. Braendli <matthias@mpb.li> (v0.5.1) * odr-dabmod: @@ -1,24 +1,30 @@ OVERVIEW ======== -ODR-DabMod is a fork of CRC-DabMod, which was developed by the Communications -Research Center Canada. It has been forked by the Opendigitalradio project. - ODR-DabMod is a DAB (Digital Audio Broadcasting) modulator compliant to ETSI EN 300 401. -In addition to the features of CRC-DabMod, this fork contains: +ODR-DabMod is a fork of CRC-DabMod, which was developed by the +Communications Research Center Canada and whose development has ceased. +The Opendigitalradio association now continues this project. + +Short list of features: +- Reads ETI, outputs compliant COFDM I/Q +- Supports native DAB sample rate and can also + resample to other rates +- supports all four DAB transmission modes - Configuration file support, see doc/example.ini - Integrated UHD output for USRP devices - Tested for B200, B100, USRP2, USRP1 - With WBX daughterboard (where appropriate) - Timestamping support required for SFN -- A FIR filter (previously done in GNURadio by crc-dwap.py) +- A FIR filter for improved spectrum mask - Improvements in logging (log to file, to syslog) - ETI sources: file (Raw, Framed and Streamed) and ZeroMQ - A Telnet and ZeroMQ remote-control that can be used to change some parameters during runtime -- 8-bit signed I/Q output format +- 8-bit signed I/Q output format, useful for the HackRF +- ZeroMQ PUB and REP output. The src/ directory contains the source code of ODR-DabMod. @@ -41,6 +47,6 @@ CONTACT Matthias P. Braendli <matthias [at] mpb [dot] li> Pascal Charest <pascal [dot] charest [at] crc [dot] ca> +With thanks to other contributors listed in AUTHORS + http://opendigitalradio.org/ -http://mmbtools.crc.ca/ -http://mpb.li/ diff --git a/configure.ac b/configure.ac index 9a88fd9..821ba1f 100644 --- a/configure.ac +++ b/configure.ac @@ -19,7 +19,7 @@ # along with ODR-DabMod. If not, see <http://www.gnu.org/licenses/>. AC_PREREQ(2.59) -AC_INIT([ODR-DabMod], [0.5.1], [matthias.braendli@mpb.li]) +AC_INIT([ODR-DabMod], [0.5.2], [matthias.braendli@mpb.li]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) AC_CANONICAL_SYSTEM |