I'm locking into kernel source and I'm noting a lot of source file that are builded by makefile to build radio FM stuff
The interesting stuff is that those file that are about radio FM are also about TV..
Those file are into driver/media/common/tuners folder..
I'm not sure about that, but if it's right ours metal could receive TV broadcast :/
This is an extract of tuner-simple.c contents..
The interesting stuff is that those file that are about radio FM are also about TV..
Those file are into driver/media/common/tuners folder..
I'm not sure about that, but if it's right ours metal could receive TV broadcast :/
This is an extract of tuner-simple.c contents..
static inline char *tuner_param_name(enum param_type type)
{
char *name;
switch (type) {
case TUNER_PARAM_TYPE_RADIO:
name = "radio";
break;
case TUNER_PARAM_TYPE_PAL:
name = "pal";
break;
case TUNER_PARAM_TYPE_SECAM:
name = "secam";
break;
case TUNER_PARAM_TYPE_NTSC:
name = "ntsc";
break;
case TUNER_PARAM_TYPE_DIGITAL:
name = "digital";
break;
default:
name = "unknown";
break;
}
return name;..Edited by davidevinavil, 22 March 2011 - 11:22 PM.







Sign In
Create Account


Back to top










