diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-03-03 10:09:29 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-03-03 10:09:29 +0100 |
commit | 0a88998e2e183ac62aa3858a17a28ce0303a9780 (patch) | |
tree | 57417f2a30cb1531f794b3db76defde29b7b5164 | |
parent | ec729dad2b099d3d0e410fa50fee4c94d508403f (diff) | |
download | dabmod-0a88998e2e183ac62aa3858a17a28ce0303a9780.tar.gz dabmod-0a88998e2e183ac62aa3858a17a28ce0303a9780.tar.bz2 dabmod-0a88998e2e183ac62aa3858a17a28ce0303a9780.zip |
Prepare v1.0.0v1.0.0
-rw-r--r-- | ChangeLog | 19 | ||||
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | configure.ac | 6 |
3 files changed, 22 insertions, 6 deletions
@@ -1,6 +1,23 @@ This file contains information about the changes done to ODR-DabMod in this repository +2017-03-03: Matthias P. Braendli <matthias@mpb.li> + (v1.0.0): + * odr-dabmod: + Add ETI-over-TCP input. + Add EDI input. + Add SoapySDR output, than can drive HackRF, LimeSDR and other boards. + Add LO offset to UHD output. + Make gainmode VAR the default and improve config syntax. + Fix TII insertion. + Display FCT and TIST in remote control. + Add most commonly used FIRFilter taps into binary and enable the + filter by default. + Add fast math configure option that can be used to improve performance + on ARM platforms as it allows the compiler to use NEON. + Improve logging. + Refactor internals (flowgraph, main loop, C++11 modernisation and more) + 2016-07-30: Matthias P. Braendli <matthias@mpb.li> (v0.6.0): * odr-dabmod: @@ -27,7 +44,7 @@ ODR-DabMod in this repository Add (experimental) TII support. Improve thread priority definition. Simplify handling of TIST offset, and add to RC. - Switch projecet to C++11. + Switch project to C++11. 2015-07-24: Matthias P. Braendli <matthias@mpb.li> (v0.5.3) @@ -13,7 +13,7 @@ ODR-mmbTools is available in the *guide*, available on the Short list of features: -- Reads ETI, outputs compliant COFDM I/Q +- Reads ETI and EDI, outputs compliant COFDM I/Q - Supports native DAB sample rate and can also resample to other rates - supports all four DAB transmission modes @@ -30,7 +30,6 @@ Short list of features: - ETI sources: ETI-over-TCP, 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, useful for the [HackRF](https://greatscottgadgets.com/hackrf/) - ZeroMQ PUB and REP output. The src/ directory contains the source code of ODR-DabMod. diff --git a/configure.ac b/configure.ac index e2a7dd5..cd6f0ed 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012 Her Majesty the # Queen in Right of Canada (Communications Research Center Canada) -# Copyright (C) 2016 Matthias P. Braendli, http://mpb.li +# Copyright (C) 2017 Matthias P. Braendli, http://opendigitalradio.org # This file is part of ODR-DabMod. # @@ -14,12 +14,12 @@ # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with ODR-DabMod. If not, see <http://www.gnu.org/licenses/>. AC_PREREQ(2.59) -AC_INIT([ODR-DabMod], [0.6.0], [matthias.braendli@mpb.li]) +AC_INIT([ODR-DabMod], [1.0.0], [matthias.braendli@mpb.li]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) AC_CANONICAL_SYSTEM |