Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[linux-dvb] Re: Problems with frontend frequency selection TDA chip



> The card can tune up to 824 Mhz but then gives "invalid 
> arguement" on the IOCTL

IIRC this is fixed in the cvs repository. Something to do with using the
wrong variable to do the band selections.

grab the latest version of frontends/tda1004x.c from cvs, recompile and
it will tune to the higher channels.

snippet from mine (line ~540)
 // determine band
 if (fe_params->frequency < 49000000) {
   return -EINVAL;
 } else if (fe_params->frequency < 159000000) {
   band = 1;
 } else if (fe_params->frequency < 444000000) {
   band = 2;
 } else if (fe_params->frequency < 861000000) {
   band = 4;
 } else {
   return -EINVAL;
 }

HTH
-- 
Adam


-- 
Info:
To unsubscribe send a mail to ecartis@linuxtv.org with "unsubscribe linux-dvb" as subject.



Home | Main Index | Thread Index