]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
* Add circular 10.75 GHz LNB
authorAndreas Öman <andreas@lonelycoder.com>
Tue, 9 Feb 2010 20:47:06 +0000 (20:47 +0000)
committerAndreas Öman <andreas@lonelycoder.com>
Tue, 9 Feb 2010 20:47:06 +0000 (20:47 +0000)
debian/changelog
src/dvb/dvb_satconf.c

index 5410f7132fe3a35f5fe77498018db2e96a82c75e..69f828437a94e3ea7043635c5bd97b13570912f5 100644 (file)
@@ -2,6 +2,8 @@ hts-tvheadend (2.11-WIP) hts; urgency=low
 
   * Add support for filtering autorecordings based on weekdays.
 
+  * Add circular 10.75 GHz LNB
+
 hts-tvheadend (2.10) hts; urgency=high
 
   * Fix a crash in HTSP server.
index 0909a98ff092e86db0e76e4da33f3d1f8f77f48a..b4ed2f8d27d9514b3075e8d8edb2946963ca6c7a 100644 (file)
@@ -293,6 +293,7 @@ dvb_lnblist_get(void)
   add_to_lnblist(array, "Enhanced");
   add_to_lnblist(array, "C-Band");
   add_to_lnblist(array, "C-Multi");
+  add_to_lnblist(array, "Circular 10750");
   return array;
 }
 
@@ -327,5 +328,9 @@ dvb_lnb_get_frequencies(const char *id, int *f_low, int *f_hi, int *f_switch)
     *f_low    = 5150000;
     *f_hi     = 5750000;
     *f_switch = 0;
+  } else if(!strcmp(id, "Circular 10750")) {
+    *f_low    = 10750000;
+    *f_hi     = 0;
+    *f_switch = 0;
   }
 }