From d02a449544cd27befdd7d3bf74c5d677eb8140ab Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sat, 27 Jan 2024 16:36:14 +0100 Subject: [PATCH] add missing feature description --- owrx/feature.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/owrx/feature.py b/owrx/feature.py index 8617e159..91d77564 100644 --- a/owrx/feature.py +++ b/owrx/feature.py @@ -652,7 +652,12 @@ class FeatureDetector(object): def has_csdreti(self): """ - TODO: feature description + To decode DAB broadcast signals, OpenWebRX needs the ETI decoder from the + [`csdr-eti`](https://github.com/jketterl/csdr-eti) project, together with the + associated python bindings from [`pycsdr-eti`](https://github.com/jketterl/pycsdr-eti). + + If you are using the OpenWebRX Debian or Ubuntu repository, the `python3-csdr-eti` package should be all you + need. """ required_version = LooseVersion("0.1") @@ -669,6 +674,9 @@ class FeatureDetector(object): def has_dablin(self): """ - TODO: feature description + To decode DAB broadcast signals, OpenWebRX needs the [`dablin`](https://github.com/Opendigitalradio/dablin) + decoding software. + + Dablin comes packaged with Debian and Ubuntu, so installing the `dablin` package should get you going. """ return self.command_is_runnable("dablin -h")