Adding frequency adjustment of -1kHz for SITOR.

This commit is contained in:
Marat Fayzullin 2023-10-29 22:31:37 -04:00
parent e8cf9fb3a0
commit 354f975b54
2 changed files with 3 additions and 0 deletions

View File

@ -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)

View File

@ -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