Paolo Testa wrote:
Note to Nico Sabbi: Also my tuner is configured to work on 0x63. [root@cmmedia scan]# szap -c channels2.conf RAI1 reading channels from file 'channels2.conf' zapping to 500 'RAI1': sat 0, frequency = 11765 MHz V, symbolrate 27500000, vpid = 0x0200, apid = 0x028a using '/dev/dvb/adapter0/frontend0' and '/dev/dvb/adapter0/demux0' status 00 | signal ffff | snr ffff | ber 000040f8 | unc 0000007f | status 1f | signal 4e4e | snr 8080 | ber 000008ae | unc 00000006 | FE_HAS_LOCK status 1f | signal 4f4f | snr 8080 | ber 000008bc | unc 00000000 | FE_HAS_LOCK status 1f | signal 4e4e | snr 7e7e | ber 000007a4 | unc 00000000 | FE_HAS_LOCK status 1f | signal 4f4f | snr 8080 | ber 00000bbc | unc 00000000 | FE_HAS_LOCK status 1f | signal 4f4f | snr 7f7f | ber 000007a3 | unc 00000000 | FE_HAS_LOCK Any idea why i geto no audio/video from it? Cheers and regards, Paolo Testa
because you didn't add -r to szap: szap -c channels2.conf -r RAI1 Andrew: updated patch attached.
--- saa7134-dvb.c.orig 2006-07-30 12:08:06.000000000 +0200 +++ saa7134-dvb.c 2006-07-30 22:17:14.000000000 +0200 @@ -51,6 +51,10 @@ module_param(antenna_pwr, int, 0444); MODULE_PARM_DESC(antenna_pwr,"enable antenna power (Pinnacle 300i)"); +static int trio_frontend = 0; +module_param(trio_frontend, int, 0644); +MODULE_PARM_DESC(antenna_pwr,"frontend to enable in the Lifeview Trio card (0: terrestrial, 1: satellitar)"); + /* ------------------------------------------------------------------ */ static int pinnacle_antenna_pwr(struct saa7134_dev *dev, int on) { @@ -1154,12 +1158,24 @@ } break; case SAA7134_BOARD_FLYDVB_TRIO: + if(! trio_frontend) { //terrestrial dev->dvb.frontend = dvb_attach(tda10046_attach, &lifeview_trio_config, &dev->i2c_adap); if (dev->dvb.frontend) { dev->dvb.frontend->ops.tuner_ops.sleep = lifeview_trio_tuner_sleep; dev->dvb.frontend->ops.tuner_ops.set_params = lifeview_trio_tuner_set_params; } + } else { //satellitar + dev->dvb.frontend = dvb_attach(tda10086_attach, &flydvbs, &dev->i2c_adap); + if (dev->dvb.frontend) { + if (dvb_attach(tda826x_attach, dev->dvb.frontend, 0x63, &dev->i2c_adap, 0) == NULL) { + printk("%s: Lifeview Trio, No tda826x found!\n", __FUNCTION__); + } + if (dvb_attach(isl6421_attach, dev->dvb.frontend, &dev->i2c_adap, 0x08, 0, 0) == NULL) { + printk("%s: Lifeview Trio, No ISL6421 found!\n", __FUNCTION__); + } + } + } break; case SAA7134_BOARD_ADS_DUO_CARDBUS_PTV331: dev->dvb.frontend = dvb_attach(tda10046_attach, &ads_tech_duo_config,
_______________________________________________ linux-dvb@xxxxxxxxxxx http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb