]> git.gir.st - ttxd.git/blob - src/szap-s2/lnb.h
update to dvb-t2 (new hardware, software)
[ttxd.git] / src / szap-s2 / lnb.h
1
2 struct lnb_types_st {
3 char *name;
4 char **desc;
5 unsigned long low_val;
6 unsigned long high_val; /* zero indicates no hiband */
7 unsigned long switch_val; /* zero indicates no hiband */
8 };
9
10 /* Enumerate through standard types of LNB's until NULL returned.
11 * Increment curno each time
12 */
13
14 struct lnb_types_st *
15 lnb_enum(int curno);
16
17 /* Decode an lnb type, for example given on a command line
18 * If alpha and standard type, e.g. "Universal" then match that
19 * otherwise low[,high[,switch]]
20 */
21
22 int
23 lnb_decode(char *str, struct lnb_types_st *lnbp);
24
Imprint / Impressum