add feature detection
This commit is contained in:
parent
2993cc4279
commit
252edb7a5a
@ -80,6 +80,7 @@ class FeatureDetector(object):
|
|||||||
"wsjt-x": ["wsjtx"],
|
"wsjt-x": ["wsjtx"],
|
||||||
"wsjt-x-2-3": ["wsjtx_2_3"],
|
"wsjt-x-2-3": ["wsjtx_2_3"],
|
||||||
"wsjt-x-2-4": ["wsjtx_2_4"],
|
"wsjt-x-2-4": ["wsjtx_2_4"],
|
||||||
|
"msk144": ["msk144decoder"],
|
||||||
"packet": ["direwolf"],
|
"packet": ["direwolf"],
|
||||||
"pocsag": ["digiham"],
|
"pocsag": ["digiham"],
|
||||||
"js8call": ["js8", "js8py"],
|
"js8call": ["js8", "js8py"],
|
||||||
@ -459,6 +460,13 @@ class FeatureDetector(object):
|
|||||||
"""
|
"""
|
||||||
return self.has_wsjtx() and self._has_wsjtx_version(LooseVersion("2.4"))
|
return self.has_wsjtx() and self._has_wsjtx_version(LooseVersion("2.4"))
|
||||||
|
|
||||||
|
def has_msk144decoder(self):
|
||||||
|
"""
|
||||||
|
To decode the MSK144 digimode please install the "msk144decoder". See the
|
||||||
|
[project page](https://github.com/alexander-sholohov/msk144decoder) for more details.
|
||||||
|
"""
|
||||||
|
return self.command_is_runnable("msk144decoder")
|
||||||
|
|
||||||
def has_js8(self):
|
def has_js8(self):
|
||||||
"""
|
"""
|
||||||
To decode JS8, you will need to install [JS8Call](http://js8call.com/)
|
To decode JS8, you will need to install [JS8Call](http://js8call.com/)
|
||||||
|
Loading…
Reference in New Issue
Block a user