PC-Basic TV FM: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Added Category: Analog PCI Cards) |
||
(6 intermediate revisions by one other user not shown) | |||
Line 8: | Line 8: | ||
[SAA7134_BOARD_PCBASIC_TV_FM] = { |
[SAA7134_BOARD_PCBASIC_TV_FM] = { |
||
/* Tanguy Pruvot ( |
/* Tanguy Pruvot (fr) <tanguy.pruvot on gmail.com> */ |
||
.name = "PC-Basic TVBasic-FM (saa7130)", |
.name = "PC-Basic TVBasic-FM (saa7130)", |
||
.audio_clock = 0x00187de7, |
.audio_clock = 0x00187de7, |
||
Line 21: | Line 21: | ||
.amux = LINE2, |
.amux = LINE2, |
||
.tv = 1, |
.tv = 1, |
||
.gpio = 0, //enable remote |
|||
},{ |
},{ |
||
.name = name_comp1, |
.name = name_comp1, |
||
Line 36: | Line 35: | ||
}, |
}, |
||
.mute = { |
.mute = { |
||
.name = name_mute, |
.name = name_mute, |
||
.amux = LINE1, |
.amux = LINE1, |
||
.gpio = 0, //enable remote |
.gpio = 0, //enable remote |
||
}, |
}, |
||
}, |
}, |
||
== Remote Control == |
|||
case SAA7134_BOARD_PCBASIC_TV_FM: |
|||
ir_codes = ir_codes_manli; |
|||
mask_keycode = 0x003f00; |
|||
mask_keyup = 0x004000; |
|||
polling = 50; // ms |
|||
break; |
|||
} |
|||
The card is compatible with Beholder Behold TV 505 FM (Card=126) |
|||
More on this page... [http://tanguy.ath.cx/index.php?q=SAA7130] |
|||
[[Category:Analog PCI Cards]] |
Latest revision as of 22:12, 4 May 2009
Cheap Analog PCI Card, with Composite, SVIDEO inputs, Audio In, Audio Out and Remote Control ports
This card contains :
- No EEPROM
- SAA7130
- Tuner Infineon TUA6030 PAL/FM (compatible with Philips Tuner 38.)
- Remote Control IC (PIC16F84A code protected)
[SAA7134_BOARD_PCBASIC_TV_FM] = { /* Tanguy Pruvot (fr) <tanguy.pruvot on gmail.com> */ .name = "PC-Basic TVBasic-FM (saa7130)", .audio_clock = 0x00187de7, .tuner_type = TUNER_INFINEON_TUA6030, //TUNER_PHILIPS_FM1216ME_MK3, .radio_type = TUNER_INFINEON_TUA6030, //TUNER_PHILIPS_FM1216ME_MK3, .tuner_addr = 0x60, // i2c = 0xC0 .radio_addr = 0x60, // i2c = 0xC0 .gpiomask = 0x0108000, .inputs = {{ .name = name_tv, .vmux = 3, .amux = LINE2, .tv = 1, },{ .name = name_comp1, .vmux = 1, .amux = LINE1, },{ .name = name_svideo, .vmux = 8, .amux = LINE1, }}, .radio = { .name = name_radio, .amux = LINE2, }, .mute = { .name = name_mute, .amux = LINE1, .gpio = 0, //enable remote }, },
Remote Control
case SAA7134_BOARD_PCBASIC_TV_FM: ir_codes = ir_codes_manli; mask_keycode = 0x003f00; mask_keyup = 0x004000; polling = 50; // ms break; }
The card is compatible with Beholder Behold TV 505 FM (Card=126)
More on this page... [1]