From 4bfc04ba4c6fb2eb5d35e43e17d1b1e00bdefd45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Tue, 9 Feb 2010 20:47:06 +0000 Subject: [PATCH] * Add circular 10.75 GHz LNB --- debian/changelog | 2 ++ src/dvb/dvb_satconf.c | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/debian/changelog b/debian/changelog index 5410f713..69f82843 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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. diff --git a/src/dvb/dvb_satconf.c b/src/dvb/dvb_satconf.c index 0909a98f..b4ed2f8d 100644 --- a/src/dvb/dvb_satconf.c +++ b/src/dvb/dvb_satconf.c @@ -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; } }