Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
linuxdvb: lnb - added Ku 10750 (Hi-Band, Inverted-Polar.)
  • Loading branch information
perexg committed Sep 29, 2014
1 parent 5b8e6fc commit 836aec0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/input/mpegts/linuxdvb/linuxdvb_lnb.c
Expand Up @@ -101,6 +101,13 @@ linuxdvb_lnb_standard_pol
dmc->u.dmc_fe_qpsk.polarisation == DVB_POLARISATION_CIRCULAR_LEFT;
}

static int
linuxdvb_lnb_inverted_pol
( linuxdvb_lnb_t *l, dvb_mux_t *lm )
{
return !linuxdvb_lnb_standard_pol(l, lm);
}

static int
linuxdvb_lnb_standard_tune
( linuxdvb_diseqc_t *ld, dvb_mux_t *lm, linuxdvb_satconf_ele_t *ls, int fd )
Expand Down Expand Up @@ -241,6 +248,19 @@ struct linuxdvb_lnb_conf linuxdvb_lnb_all[] = {
.lnb_high = 10750000,
.lnb_switch = 10750000,
},
{
{ {
.ld_type = "Ku 10750 (Hi-Band, Inverted-Polar.)",
.ld_tune = linuxdvb_lnb_standard_tune,
},
.lnb_freq = linuxdvb_lnb_standard_freq,
.lnb_band = linuxdvb_lnb_standard_band,
.lnb_pol = linuxdvb_lnb_inverted_pol,
},
.lnb_low = 10750000,
.lnb_high = 10750000,
.lnb_switch = 10750000,
},
{
{ {
.ld_type = "Ku 11300",
Expand Down

0 comments on commit 836aec0

Please sign in to comment.