(Aka "What the hell are the option numbers shown in the service menu?")
From the service menu there's a menu to display option numbers -- if you don't know how to get to the service menu, go read some other threads first.
Service menu -> Options -> Option numbers
These represent the raw values of the items in the options menu; if you change any option these numbers will change (even if you don't store the changes).
The opion numbers are given as two groups of 4 numbers:
Group 1: XXXXX XXXXX XXXXX XXXXX
Group 2: XXXXX XXXXX XXXXX XXXXX
Each of the 4 numbers in a group is shown as a decimal number, padded by 0's. If you translate that number into binary, then each bit becomes an option number.
Group 1
Code:
Code:
XXXXX ----- ----- ----- (picture processing)
3: Comb filter: 2D comb
4: Comb filter: 3D comb (conflicts with previous)
5: Ambient light: mono
6: Ambient light: stereo (conflicts with previous)
10: MOP: on
12: POD: on
----- XXXXX ----- ----- (audio)
9: Subwoofer internal: on
----- ----- XXXXX ----- (connectors)
0: HDMI1: with analog audio
1: HDMI1: without analog audio (conflicts with previous)
2: HDMI2: with analog audio
3: HDMI2: without analog audio (conflicts with previous)
5: USB version: USB1.1
6: USB version: USB2.0 + Cardreader
9: RRT: on
10: 1 spdif connector
11: 2 spdif connectors
----- ----- ----- XXXXX
unknown
Group 2
Code:
Code:
XXXXX ----- ----- -----
10: Dimming backlight: on
11: Scanning backlight: on
----- XXXXX ----- -----
unknown
----- ----- XXXXX -----
5: (dealer options) picture mute: on
7: (dealer options) virgin mode: on
15: EPG/TVGuide
----- ----- ----- XXXXX
unknown
To give an example:
Group 1: XXXXX XXXXX 00425 XXXXX
Expressed as binary, 00425 becomes 0000010000100101, so using the chart above:
Code:
Code:
0000010000100101
| | | |_ bit 0: HDMI #1: with analog audio
| | |___ bit 2: HDMI #2: with analog audio
| |______ bit 5: USB version: USB 1.1
|___________ bit 10: 1 spdif connector
(bits are numbered 0-15 with bit 0 as the right most digit)
...
So, it should be possible to alter the options numbers directly to enable the EPG/TVGuide, just by editing the third set of numbers in Group 2.
Any thoughts?