]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
60m band WRC15 corrections
authorDL1YCF <dl1ycf@darc.de>
Wed, 1 Jan 2020 13:04:18 +0000 (14:04 +0100)
committerDL1YCF <dl1ycf@darc.de>
Wed, 1 Jan 2020 13:04:18 +0000 (14:04 +0100)
band.c
band.h
frequency.c

diff --git a/band.c b/band.c
index 7bb9c87305ce56826fc86b272772465cf0729b88..ca073d52ffb87f3bb3b196696044207f94c1dc37 100644 (file)
--- a/band.c
+++ b/band.c
@@ -57,9 +57,9 @@ BANDSTACK_ENTRY bandstack_entries80[] =
      {3850000LL,modeLSB,filterF5,-2800,-200,-2800,-200}};
 
 BANDSTACK_ENTRY bandstack_entries60_WRC15[] =
-    {{5352750LL,modeCWU,filterF6,200,2800,200,2800},    // WRC15 60m band allocation
-     {5357000LL,modeUSB,filterF5,200,2800,200,2800},    // sub-bands reflect IARU R1
-     {5363000LL,modeUSB,filterF5,200,2800,200,2800}};   // recommendation
+    {{5352750LL,modeCWU,filterF6,200,2800,200,2800},
+     {5357000LL,modeUSB,filterF5,200,2800,200,2800},
+     {5363000LL,modeUSB,filterF5,200,2800,200,2800}};
 
 BANDSTACK_ENTRY bandstack_entries60_OTHER[] =
     {{5332000LL,modeUSB,filterF5,-2800,-200,-2800,-200}, // default channels for
@@ -317,15 +317,10 @@ CHANNEL band_channels_60m_UK[UK_CHANNEL_ENTRIES] =
 
 //
 // Many countries have now allowed ham radio on the 60m
-// band based on WRC15. There are no "channels", but
-// an IARU region 1 recommendation can be read that
-// there is a CW segment, an all-mode segment
-// and a small weak-signal segment.
+// band based on WRC15. There is a single 15 kHz wide "channel"
 //
 CHANNEL band_channels_60m_WRC15[WRC15_CHANNEL_ENTRIES] =
-     {{5352750LL, 2500LL},    // CW channel:           5351.5 to 5354   kHz
-      {5360000LL,12000LL},    // Phone and DigiModes:  5354   to 5360   kHz
-      {5366250LL, 500LL}};    // Weak narrow signals:  5366   to 5366.5 kHz
+     {{5359000LL,15000LL}};
 
 CHANNEL band_channels_60m_OTHER[OTHER_CHANNEL_ENTRIES] =
      {{5332000LL,2800LL},
diff --git a/band.h b/band.h
index 8e1762e0b2d3d96a2cdb8948f12a6fd730c086b1..026f3183493128523f7dcc5639728e340fa80151 100644 (file)
--- a/band.h
+++ b/band.h
@@ -97,7 +97,7 @@ gboolean displayHF;
 
 #define UK_CHANNEL_ENTRIES 11
 #define OTHER_CHANNEL_ENTRIES 5
-#define WRC15_CHANNEL_ENTRIES 3
+#define WRC15_CHANNEL_ENTRIES 1
 
 extern int channel_entries;
 extern CHANNEL *band_channels_60m;
index 16bb720a4813e9e19b765d48abadd19e6d5dfa4a..9505fbd685d9f80227ec0e69d256b015e7f99724 100644 (file)
@@ -372,6 +372,7 @@ struct frequency_info frequencyInfo[]=
         {    4750000LL,     4999999LL, "60M Short Wave",                     bandGen, FALSE},
         {    5000000LL,     5000000LL, "WWV",                                bandWWV, FALSE},
         {    5261250LL,     5408000LL, "60M",                                band60,  TRUE },
+        {    5261250LL,     5408000LL, "60M",                                band60,  FALSE},
         {    5900000LL,     6200000LL, "49M Short Wave",                     bandGen, FALSE},
         {    7000000LL,     7299999LL, "40M",                                band40,  TRUE },
         {    7300000LL,     7350000LL, "41M Short Wave",                     bandGen, FALSE},