* Add circular 10.75 GHz LNB

This commit is contained in:
Andreas Öman 2010-02-09 20:47:06 +00:00
parent 0e13c5aaa5
commit 4bfc04ba4c
2 changed files with 7 additions and 0 deletions

2
debian/changelog vendored
View 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.

View 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;
}
}