update list of supported modes for pskreporter
This commit is contained in:
parent
9689ce5202
commit
66dd4b4581
@ -15,10 +15,21 @@ logger = logging.getLogger(__name__)
|
|||||||
|
|
||||||
|
|
||||||
class PskReporter(Reporter):
|
class PskReporter(Reporter):
|
||||||
|
"""
|
||||||
|
This class implements the reporting interface to send received signals to pskreporter.info.
|
||||||
|
|
||||||
|
It interfaces with pskreporter as documented here: https://pskreporter.info/pskdev.html
|
||||||
|
"""
|
||||||
interval = 300
|
interval = 300
|
||||||
|
|
||||||
def getSupportedModes(self):
|
def getSupportedModes(self):
|
||||||
return ["FT8", "FT4", "JT9", "JT65", "FST4", "JS8", "Q65"]
|
"""
|
||||||
|
Supports all valid MODE and SUBMODE values from the ADIF standard.
|
||||||
|
|
||||||
|
Current version at the time of the last change:
|
||||||
|
https://www.adif.org/312/ADIF_312.htm#Mode_Enumeration
|
||||||
|
"""
|
||||||
|
return ["FT8", "FT4", "JT9", "JT65", "FST4", "JS8", "Q65", "WSPR", "FST4W"]
|
||||||
|
|
||||||
def stop(self):
|
def stop(self):
|
||||||
self.cancelTimer()
|
self.cancelTimer()
|
||||||
|
Loading…
Reference in New Issue
Block a user