Allowing failed SDR source to restart.

This commit is contained in:
Marat Fayzullin 2022-12-11 12:09:36 -05:00
parent c04e8584ef
commit 7b256de82f
1 changed files with 3 additions and 1 deletions

View File

@ -130,7 +130,9 @@ class ActiveSdrSources(PropertyReadOnly):
self._addSource(key, value)
def isAvailable(self, source: SdrSource):
return source.isEnabled() and not source.isFailed()
# @@@
# return source.isEnabled() and not source.isFailed()
return source.isEnabled()
def _addSource(self, key, source: SdrSource):
if self.isAvailable(source):