After more than 1 year I am still waiting for support this device on my UNO...![]()
Device not recognize, in my output file: dvb_usb_v2: 'Asus U3100Mini Plus' error while loading driver
Device not recognize, in my output file: dvb_usb_v2: 'Asus U3100Mini Plus' error while loading driver
Dear Angelofsky
Would you please check this url's and help me to fix this problem:
&Code:http://git.schinagl.nl/AF903x_SRC.git
ThanksCode:http://permalink.gmane.org/gmane.linux.drivers.video-input-infrastructure/66263
http://palosaari.fi/linux/v4l-dvb/firmware/af9035/
this change included in new imgae 2.0.8?
Szirog, I was tested all of palosaari.fi firmware but no chance. unfortunately the new image (2.0.8) still not recognize this stick. in my first try rhe stick recognize and searching channels, but after that never work and always in dmesg: Asus U3100Mini Plus error while loading driver (-19)
http://linuxtv.org/wiki/index.php/Asus_U3100_Mini_plus_DVB-T
--SignElSoft 22:04, 20 February 2014 (CET)
I have seen the same problem.
I have made a little change on the /usr/src/linux/drivers/media/tuners/fc2580.c file, and compiled a new fc2580.ko module, and it works fine.
struct dvb_frontend *fc2580_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c, const struct fc2580_config *cfg)
{
...
/* check if the tuner is there */
ret = fc2580_rd_reg(priv, 0x01, &chip_id);
/* *************** COMMENT OUT THIS PART *****************************
if (ret < 0)
goto err;
dev_dbg(&priv->i2c->dev, "%s: chip_id=%02x\n", __func__, chip_id);
switch (chip_id) {
case 0x56:
case 0x5a:
break;
default:
goto err;
}
angelofsky, I found a solution about i2c communication error on this tuner fromcan you please modified this code to new image asap?Code:http://linuxtv.org/wiki/index.php/Asus_U3100_Mini_plus_DVB-T
Code:--SignElSoft 22:04, 20 February 2014 (CET) I have seen the same problem. I have made a little change on the /usr/src/linux/drivers/media/tuners/fc2580.c file, and compiled a new fc2580.ko module, and it works fine. struct dvb_frontend *fc2580_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c, const struct fc2580_config *cfg) { ... /* check if the tuner is there */ ret = fc2580_rd_reg(priv, 0x01, &chip_id); /* *************** COMMENT OUT THIS PART ***************************** if (ret < 0) goto err; dev_dbg(&priv->i2c->dev, "%s: chip_id=%02x\n", __func__, chip_id); switch (chip_id) { case 0x56: case 0x5a: break; default: goto err; }