Adding frequency adjustment of -1kHz for SITOR.
This commit is contained in:
parent
e8cf9fb3a0
commit
354f975b54
|
|
@ -295,6 +295,7 @@ FeatureMarker.prototype.getInfoHTML = function(name, receiverMarker = null) {
|
|||
var tune = mode === 'cw'? freq - 800
|
||||
: mode === 'fax'? freq - 1900
|
||||
: mode === 'rtty450'? freq - 1000
|
||||
: mode === 'sitorb'? freq - 1000
|
||||
: freq;
|
||||
|
||||
var name = ('0000' + this.schedule[j].time1).slice(-4)
|
||||
|
|
|
|||
|
|
@ -55,6 +55,8 @@ class EIBI(object):
|
|||
return freq - 1900
|
||||
elif mode == "rtty450":
|
||||
return freq - 1000
|
||||
elif mode == "sitorb":
|
||||
return freq - 1000
|
||||
else:
|
||||
return freq
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue