@@ -157,6 +157,10 @@
{ { { MASTER_CMD_NO_RESPONSE, ADDR_ANY_LNB, CMD_WR_N1_UNCOMMITTED, 0xff, 0x00, 0x00 }, 4 }, 20 }
};
+struct diseqc_cmd kjaerulff1_switch_cmds[] = {
+ { { { MASTER_CMD_NO_RESPONSE, ADDR_ANY_LNB, 0x26, 0x00, 0x00, 0x00 }, 3 }, 20 },
+ { { { MASTER_CMD_NO_RESPONSE, ADDR_ANY_LNB, 0x27, 0x00, 0x00, 0x00 }, 3 }, 20 },
+};
/******************************************************************************
* only indices for positioning cmds[] - non standardized.
@@ -453,6 +457,48 @@
return err;
}
+int setup_kjaerulff1_switch (int frontend_fd, int switch_pos, int voltage_18, int hiband)
+{
+ int err = 0;
+ int voltage = voltage_18 ? SEC_VOLTAGE_18 : SEC_VOLTAGE_13;
+ int tone = hiband ? SEC_TONE_ON : SEC_TONE_OFF;
+ int n;
+
+ if (switch_pos < 0 || switch_pos > 3)
+ return (-EINVAL);
+
+ err |= ioctl(frontend_fd, FE_SET_TONE, (int)SEC_TONE_OFF);
+
+ for (n = 0; n != 2; n++) {
+
+ err |= ioctl(frontend_fd, FE_SET_VOLTAGE, (int)SEC_VOLTAGE_OFF);
+ usleep(45000);
+ err |= ioctl(frontend_fd, FE_SET_VOLTAGE, voltage);
+ usleep(15000);
+ if (switch_pos == 1)
+ err |= ioctl(frontend_fd, FE_DISEQC_SEND_MASTER_CMD, &kjaerulff1_switch_cmds[0].cmd);
+ if (switch_pos == 2 || switch_pos == 3)
+ err |= ioctl(frontend_fd, FE_DISEQC_SEND_MASTER_CMD, &kjaerulff1_switch_cmds[1].cmd);
+ usleep(45000);
+
+ if (switch_pos == 3) {
+ err |= ioctl(frontend_fd, FE_SET_VOLTAGE, (int)SEC_VOLTAGE_OFF);
+ usleep(45000);
+ err |= ioctl(frontend_fd, FE_SET_VOLTAGE, voltage);
+ usleep(15000);
+ err |= ioctl(frontend_fd, FE_DISEQC_SEND_MASTER_CMD, &kjaerulff1_switch_cmds[0].cmd);
+ usleep(45000);
+ }
+ }
+
+ err |= ioctl(frontend_fd, FE_SET_TONE, tone);
+
+ if (err)
+ return (-EINVAL);
+
+ return (0);
+}
+
int setup_switch (int frontend_fd, int switch_pos, int voltage_18, int hiband, int uncommitted_switch_pos)
{
int i;
@@ -20,6 +20,7 @@
/*
* set up the switch to position/voltage/tone
*/
+int setup_kjaerulff1_switch (int frontend_fd, int switch_pos, int voltage_18, int hiband);
int setup_switch (int frontend_fd, int switch_pos, int voltage_18, int freq, int uncommitted_switch_pos);
int rotate_rotor (int frontend_fd, int * from, int to, uint8_t voltage_18, uint8_t hiband);
@@ -113,6 +113,7 @@
static int committed_switch = 0; // 20090320: DVB-S/S2, DISEQC committed switch position
static int uncommitted_switch = 0; // 20090320: DVB-S/S2, DISEQC uncommitted switch position
static struct lnb_types_st this_lnb; // 20090320: DVB-S/S2, LNB type, initialized in main to 'UNIVERSAL'
+static int kjaerulff1_switch_pos = -1; // 20110313: Non-standard Kjaerulff1 switch type
time_t start_time = 0;
@@ -1619,7 +1620,12 @@
if (t->param.frequency >= this_lnb.switch_val)
switch_to_high_band++;
- setup_switch (frontend_fd, committed_switch,
+ if (kjaerulff1_switch_pos > -1)
+ setup_kjaerulff1_switch (frontend_fd, kjaerulff1_switch_pos,
+ t->param.u.qpsk.polarization == POLARIZATION_VERTICAL ? 0 : 1,
+ switch_to_high_band);
+ else
+ setup_switch (frontend_fd, committed_switch,
t->param.u.qpsk.polarization == POLARIZATION_VERTICAL ? 0 : 1,
switch_to_high_band, uncommitted_switch);
@@ -2584,6 +2590,7 @@
" ? for list\n"
" -D Nc use DiSEqC committed switch position N\n"
" -D Nu use DiSEqC uncommitted switch position N\n"
+ " -K N use non-standard Kjaerulff1 switch position N\n"
" -p <file>\n"
" use DiSEqC rotor Position file\n"
" -r N use Rotor position N (needs -s)\n"
@@ -2642,7 +2649,7 @@
flags.version = version;
start_time = time(NULL);
- while ((opt = getopt(argc, argv, "a:c:e:f:hi:kl:o:p:qr:s:t:vxA:D:E:FHI:LMO:PQ:R:S:T:VX")) != -1) {
+ while ((opt = getopt(argc, argv, "a:c:e:f:hi:kl:o:p:qr:s:t:vxA:D:E:FHI:K:LMO:PQ:R:S:T:VX")) != -1) {
switch (opt) {
case 'a': //adapter
adapter = strtoul(optarg, NULL, 0);
@@ -2682,6 +2689,11 @@
case 'k': //kaffeine output
output_format = OUTPUT_KAFFEINE;
break;
+ case 'K':
+ kjaerulff1_switch_pos = strtoul(optarg, NULL, 0);
+ if (kjaerulff1_switch_pos > 3 || kjaerulff1_switch_pos < 0)
+ fatal("kjaerulff1 switch position needs to be in the range [0..3]!\n");
+ break;
case 'l': //satellite lnb type
if (strcmp(optarg, "?") == 0) {
struct lnb_types_st * p;
@@ -3169,6 +3181,8 @@
info("using DiSEqC committed switch %d\n", committed_switch);
if (uncommitted_switch > 0)
info("using DiSEqC uncommitted switch %d\n", uncommitted_switch);
+ if (kjaerulff1_switch_pos > -1)
+ info("using DiSEqC Kjaerulff1 switch %d\n", kjaerulff1_switch_pos);
/* grrr...
* DVB API v5 doesnt allow checking for
* S2 capabilities fec3/5, fec9/10, PSK_8,