EN 22
3139 785 31532
Firmware Upgrading & Diagnostic Software
5.
Nucleus Name
DS_CHR_MacroVisionOn
Nucleus Number
110
Description
Turn on MacroVision.
Technical
-
Set some registers of the DENC module in the Codec.
Execution Time
Less than 1 second.
User Input
None
Error
Number
Description
11000
Turning on MacroVision succeeded
11001
Turning on MacroVision failed
Example
DS:> 110
011000:
Test OK @
Nucleus Name
DS_CHR_MacroVisionOff
Nucleus Number
111
Description
Turn off MacroVision.
Technical
-
Set some registers of the DENC module in the Codec.
Execution Time
Less than 1 second.
User Input
None
Error
Number
Description
11100
Turning off MacroVision succeeded
11101
Turning off MacroVision failed
Example
DS:> 111
011100:
Test OK @
Nucleus Name
DS_CHR_Peek
Nucleus Number
112
Description
Peek a value on a specified address
Technical
-
Check the user input
-
Read out the address specified
-
Check whether the address to be read is aligned on 4 bytes
Execution Time
Less than 1 second.
User Input
The address to peek on
Error
Number
Description
11200
Peeking on the specified address succeeded
11201
Peeking on the specified address failed, wrong user input
11202
Peeking on the specified address failed due to misalignment
Example
DS:> 112 0xa0700000
011200: Value read = 0x000001BD
Test OK @
Nucleus Name
DS_CHR_Poke
Nucleus Number
113
Description
Poke a value on a specified address
Technical
-
Check the user input
-
Change the value on the address specified
-
Check whether the address to be modified is aligned on 4 bytes
Execution Time
Less than 1 second.
User Input
The address to poke and the value: <address><value>
Error
Number
Description
11300
Poking the specified address succeeded
11301
Poking the specified address failed, wrong user input
11302
Poking the specified address failed due to misalignment
Example
DS:> 113 0xa0700000 0xaabbccdd
011300:
Test OK @