]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
[PR-170] add support for Ku Band lnb with lof 11300 KHz. Fixes #1332.
authorJoakim Hernberg <jhernberg@alchemy.lu>
Thu, 18 Oct 2012 16:02:38 +0000 (18:02 +0200)
committerAdam Sutton <dev@adamsutton.me.uk>
Fri, 19 Oct 2012 14:23:07 +0000 (15:23 +0100)
src/dvb/dvb_satconf.c

index 94a44e3a31a91113c84b3b049fe6760f4057d244..ba607ef5e77b28763b7a97d03aa7565e1d4f08a3 100644 (file)
@@ -296,6 +296,7 @@ dvb_lnblist_get(void)
   add_to_lnblist(array, "C-Band");
   add_to_lnblist(array, "C-Multi");
   add_to_lnblist(array, "Circular 10750");
+  add_to_lnblist(array, "Ku 11300");
   return array;
 }
 
@@ -338,5 +339,9 @@ dvb_lnb_get_frequencies(const char *id, int *f_low, int *f_hi, int *f_switch)
     *f_low    = 10750000;
     *f_hi     = 0;
     *f_switch = 0;
+  } else if(!strcmp(id, "Ku 11300")) {
+    *f_low    = 11300000;
+    *f_hi     = 0;
+    *f_switch = 0;
   }
 }