Need help - Replay 5k extender after 2k eeprom upgrade
Moderator: Moderators
Need help - Replay 5k extender after 2k eeprom upgrade
OK, so I upgraded one of my Replay 5k remotes to a 2k eeprom, but am unsure how to get the extender to use the extra memory. I am sure the RDF needs modified but I am unsure what to change. Thanks!
-Tom
-
The Robman
- Site Owner
- Posts: 21886
- Joined: Fri Aug 01, 2003 9:37 am
- Location: Chicago, IL
- Contact:
I just took a look at the R5k extender zip and there doesn't appear to be any provision for a 2k version. Hopefully Hal (the author) will spot this thread and let you know what you need to do.
Rob
www.hifi-remote.com
Please don't PM me with remote questions, post them in the forums so all the experts can help!
www.hifi-remote.com
Please don't PM me with remote questions, post them in the forums so all the experts can help!
After making the modifications to .asm file and assembling it, take the values of ee_main, Shift_Key_patch DevSetup_patch from .lst file generated from .asm, then modify the .rdf with those valus. Replace $(ee_main-1), etc. with manually calculated hexadecimal values.
XXX is the boundary of the keymove/upgrade areas. You don't have to change it unless you wish to change size of the upgrade area.
Hal
XXX is the boundary of the keymove/upgrade areas. You don't have to change it unless you wish to change size of the upgrade area.
Code: Select all
.asm:
NewKeyMoveArea = 258 -> XXX
EepromSize = 400 -> 800
.rdf:
EepromSize=$400
AdvCodeAddr=$258..$2F5 -> $XXX..$(ee_main-1)
UpgradeAddr=$010..$257 -> $010..$(XXX-1)
Shift Button Keycode=$0334.7.8.3.0 -> $Shift_Key_patch.7.8.3.0
[DeviceButtons]
TV = $3E8 $3E9 -> $(DevSetup_patch+0) $(DevSetup_patch+1)
Replay = $3EA $3EB -> $(DevSetup_patch+2) $(DevSetup_patch+3)
CBL = $3EC $3ED -> ...
VCR = $3EE $3EF
CD = $3F0 $3F1
DVD = $3F2 $3F3
AUX1 = $3F4 $3F5
AUX2 = $3F6 $3F7
AUX3 = $3F8 $3F9
AUX4 = $3FA $3FB
AUX5 = $3FC $3FD
AUX6 = $3FE $3FF
-
The Robman
- Site Owner
- Posts: 21886
- Joined: Fri Aug 01, 2003 9:37 am
- Location: Chicago, IL
- Contact:
Now that it's tested, could one of you put a zip file together containing the 2k version please?
Rob
www.hifi-remote.com
Please don't PM me with remote questions, post them in the forums so all the experts can help!
www.hifi-remote.com
Please don't PM me with remote questions, post them in the forums so all the experts can help!
I uploaded it to the diagnosis area since I havn't fully tested it yet.
http://www.hifi-remote.com/forums/dload ... le_id=2201
http://www.hifi-remote.com/forums/dload ... le_id=2201
-Tom