DvbS2 Technisat Skystar Usb HD

angelofsky1980

BlackHole Driver Specialist
Ok,i understand,see putty.log for dmesg and lsmod,the only other thing
i see is:
"dvb-usb: error -71 while querying for an remote control event."

But haven t touched the RC.

Correct MAC Adress is shown in log,but i have censored it .

I will make more investigations about your problem
 

crazycat

Vu+ Newbie
I will make more investigations about your problem

disable RC support in technisat-usb2.c

Code:
/* device description */
static struct dvb_usb_device_properties technisat_usb2_devices = {
    ......................................
    .num_device_descs = 1,
    .devices = {
        {  "Technisat SkyStar USB HD (DVB-S/S2)",
            { &technisat_usb2_id_table[0], NULL },
            { NULL },
        },
    },
 
/*
    .rc.core = {
        .rc_interval = 100,
        .rc_codes    = RC_MAP_TECHNISAT_USB2,
        .module_name = "technisat-usb2",
        .rc_query    = technisat_usb2_rc_query,
        .allowed_protos = RC_TYPE_ALL,
        .driver_type    = RC_DRIVER_IR_RAW,
    }
*/
};
    ......................................
 

angelofsky1980

BlackHole Driver Specialist
disable RC support in technisat-usb2.c

Code:
/* device description */
static struct dvb_usb_device_properties technisat_usb2_devices = {
    ......................................
    .num_device_descs = 1,
    .devices = {
        {  "Technisat SkyStar USB HD (DVB-S/S2)",
            { &technisat_usb2_id_table[0], NULL },
            { NULL },
        },
    },
 
/*
    .rc.core = {
        .rc_interval = 100,
        .rc_codes    = RC_MAP_TECHNISAT_USB2,
        .module_name = "technisat-usb2",
        .rc_query    = technisat_usb2_rc_query,
        .allowed_protos = RC_TYPE_ALL,
        .driver_type    = RC_DRIVER_IR_RAW,
    }
*/
};
    ......................................

Should not be a solution for a frontend misdetection ..... but thanks :)
 
Top