Welcome guest, is this your first visit? Click the "Create Account" button now to join.
Results 1 to 10 of 74

Threaded View

  1. #11
    Navigation software Moderator kunix's Avatar
    Join Date
    Sep 2011
    Location
    Belarus
    Posts
    908
    Rep Power
    440

    Default

    haute
    Here are a few hints for you. All info below is for valid eTrex 20 firmware version 2.80.
    eTrex is a multi-language device, so localizable strings won't be referenced directly from the firmware. Instead, some code will be used when referencing strings. And indeed there is a function for loading localizable strings which takes an integer as a string index:
    Code:
    Please Login or Register to see the links
    There is a default English locale, which is the only locale contained in the firmware. The string of interest at 0x 80845EF8 is a part of the English locale.
    Code:
    Please Login or Register to see the links
    Also there is a list of tags used for loading localizable strings from localization XML files:
    Code:
    Please Login or Register to see the links
    The tag of interest is the following
    Code:
    Please Login or Register to see the links
    The corresponding string index is (0x80841834-0x808413BC)/4 = 0x11E.
    Then I suggest disassembling the firmware by issuing disasm(0x80100000,0x803C0000), which is defined in the following script: [Only registered and activated users can see links. ].
    After that I suggest searching for text "0x11E" (Alt-T). Then we can find where integer constant 0x11E is used for loading strings:
    Code:
    Please Login or Register to see the links
    So it looks like this is the code that displays the message of interest. Good luck

    P.S.
    Also I think this way of searching for particular peace of code isn't universal, as some localizable strings may be referenced by data structures defining complex windows, and not the firmware code itself. Even worse, these data structures may be constructed dynamically.
    I don't know how complex windows are displayed in tourist devices, so maybe AlexWhiter will shed some light on it.
    Last edited by kunix; 4th September 2012 at 09:56 AM.

  2.    Advertissements


 

 

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •