Add 4m band support to frequencyToBand function
Extended the frequencyToBand function to recognize frequencies between 70 MHz and 72 MHz as the 4m band.
这个提交包含在:
父节点
04ccd0809c
当前提交
f1dbceafd3
共有 1 个文件被更改,包括 3 次插入 和 0 次删除
|
|
@ -34,6 +34,9 @@ function frequencyToBand(frequency) {
|
|||
else if(result >= 50000000 && result <= 56000000) {
|
||||
return '6m';
|
||||
}
|
||||
else if(result >= 70000000 && result <= 72000000) {
|
||||
return '4m';
|
||||
}
|
||||
else if(result >= 144000000 && result <= 148000000) {
|
||||
return '2m';
|
||||
}
|
||||
|
|
|
|||
正在加载…
在新工单中引用