blob: 1d14a4cd22e9d5f0edda037628de2867063ee2dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*
* Test switching the voltage signal high and low on a SAT frontend.
* (Note: DiSEqC equipment ignores this after it has once seen a diseqc
* sequence; reload the driver or unplug/replug the SAT cable to reset.)
*
* usage: FRONTEND=/dev/dvb/adapterX/frontendX setvoltage {13|18}
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <linux/dvb/frontend.h>
int main (int argc, char **argv)
{
char *fedev = "/dev/dvb/adapter0/frontend0";
int fd, r;
if (argc != 2 || (strcmp(argv[1], "13") && strcmp(argv[1], "18"))) {
fprintf (stderr, "usage: %s <13|18>\n", argv[0]);
return -1;
}
if (getenv("FRONTEND"))
fedev = getenv("FRONTEND");
printf("setvoltage: using '%s'\n", fedev);
if ((fd = open (fedev, O_RDWR)) < 0)
perror ("open");
if (strcmp(argv[1], "13") == 0)
r = ioctl (fd, FE_SET_VOLTAGE, SEC_VOLTAGE_13);
else
r = ioctl (fd, FE_SET_VOLTAGE, SEC_VOLTAGE_18);
if (r == -1)
perror ("ioctl FE_SET_VOLTAGE");
close (fd);
return 0;
}
|