Page 1 of 1

Need help - Replay 5k extender after 2k eeprom upgrade

Posted: Fri Sep 16, 2005 9:22 pm
by Filebug
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!

Posted: Fri Sep 16, 2005 9:40 pm
by The Robman
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.

Posted: Sun Sep 18, 2005 10:28 pm
by mtakahar
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.

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
Hal

Posted: Mon Sep 19, 2005 7:53 pm
by Filebug
Thanks for the info. I will attempt to do this and post back.

Posted: Mon Sep 19, 2005 9:41 pm
by Filebug
Wow - It works! Now to cram it full and see if it doesn't explode. Thanks a lot!!

Posted: Tue Sep 20, 2005 6:15 am
by The Robman
Now that it's tested, could one of you put a zip file together containing the 2k version please?

Posted: Tue Sep 20, 2005 5:21 pm
by Filebug
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