sys/dvb/gstdvbsrc.c: Repeat diseqc call to allow for some diseqc switches.

Original commit message from CVS:
* sys/dvb/gstdvbsrc.c:
Repeat diseqc call to allow for some diseqc switches.
This commit is contained in:
Zaheer Abbas Merali 2008-03-28 09:48:27 +00:00
parent 7c92b4e478
commit 361092ff6c
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-03-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* sys/dvb/gstdvbsrc.c:
Repeat diseqc call to allow for some diseqc switches.
2008-03-27 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/Makefile.am:

View file

@ -1166,7 +1166,10 @@ diseqc (int secfd, int sat_no, int voltage, int tone)
cmd.cmd.msg[3] =
0xf0 | (((sat_no * 4) & 0x0f) | (tone == SEC_TONE_ON ? 1 : 0) |
(voltage == SEC_VOLTAGE_13 ? 0 : 2));
/* send twice because some diseqc switches do not respond correctly the
* first time */
diseqc_send_msg (secfd, voltage, &cmd, tone,
sat_no % 2 ? SEC_MINI_B : SEC_MINI_A);
diseqc_send_msg (secfd, voltage, &cmd, tone,
sat_no % 2 ? SEC_MINI_B : SEC_MINI_A);