Eeprom Bin File Editor



Free Download ECU bin file dump editor Hex Editor

  • HexEd.it is a full-featured HTML5/JavaScript-based hex editor running directly in your web browser. Analyse and edit binary files wherever you want, on any operating system, and without installing any software. All file processing is done by your browser using HTML5 and JavaScript functionality. HexEd.it does not send any data to the webserver.
  • Matrixclock EEPROM editor. While project uses various parameters from EEPROM memory special desktop application to edit eeprom matrixclockxx.bin was designed. It allows to load, modify and save eeprom binary file in easy way. Matrixclock editor is written on Qt5 and it’s sources are availiable on Github.
Eeprom bin file editor freeware

HexEdit has always easily edited files of any size without any extra effort on the part of the user. Before HexEdit most hex editors could not edit files bigger than they could load into memory. Since then many have copied how HexEdit works.

Eeprom Bin File Editor Download

HexEdit was the first binary editor to allow editing of files more than 4 GBytes (2^32 bytes) in size. There have been several improvements to HexEdit since the first version so that you can now insert huge files into other files, etc.

This free binary file editing utility also provides you with the following features: Unlimited Undo/Redo; GoTo Offset; Save/Load Operation History; 32bit/64bit Patch Creation; Find/Replace for hex/decimal/octal/float/double data and binary codes; Grouping by Bytes, Words, Double Words, Quad Words. BinEditor is a Windows application that allows viewing and editing binary files. It has hexadecimal and text windows to display binary file content; provides fast navigation, binary and text searches and edits.Maximum file size for Windows is 100kB. Publisher: GB Research, LLC.

Also all operations on the selection (including compression, encryption, checksums, CRCs, etc) work with a selection length of any size. Progress is shown in the status bar and you can, of course, abort the operation by pressing the Spacebar or Escape key.

Gifts of rose, hand there are lingering fragrance! Here we share the software free to all the people who are in need, please do not use it for commercial purpose, thank you! that’s would be great if you could support us by sharing our site – www.u-obd.com to more people who are in need, thank you!

please click the download link to download it directly.

Free Download

Note: when extract and install the software, shut off all the anti virus software

Eeprom Bin File Editor Tool

Comments

Eeprom Bin File Editor Software

Eeprom Bin File Editor

Eeprom Bin File Editor Freeware

  • edited 2011-11-03 - 11:37:39
    When you say the drive 'failed', what happened exactly? If the drive itself isn't completely toast, you might be able to remove it from its housing, install it in a computer via its IDE or SATA interface, and use Knoppix to retrieve the files.
    -Phil
  • edited 2011-11-03 - 11:59:34
    This is a recuring question.
    The answer is 'you don't, your program is history'.
    The good news is that it forces you to rewrite and therefor rethink the whole thing again and it will be better than it was before:)
  • edited 2011-11-03 - 12:00:31
    You didn't say what you have on the EEPROM. Assuming that you're talking about a Propeller's EEPROM and a Spin / PASM program, first thing you need to do is get it off the EEPROM into a file. You can use DongleBasic (from the OBEX) to do this if you have an SD card (or can connect an SD card) to your Propeller board. The COPY statement can copy the 32K EEPROM contents to a file (a *.eeprom file). You can put the SD card into a PC card reader to get it into the PC. There's a disassembler called GEAR that you can use to try to make sense of the program's binary dump. You'll have to learn a lot about the format of the binary program and it will take a lot of work to make sense of GEAR's output since it doesn't decompile into Spin, but disassembles the Spin compiler's output into a kind of assembly language that would then have to hand decompiled into meaningful Spin code.
  • edited 2011-11-03 - 12:10:45
    I thought BST had something that would read the EEPROM and convert it to Spin code. You'd loose variable names etc.
    At least that's what someone said when this topic came up before (IIRC).
    Duane
  • edited 2011-11-03 - 12:14:32
    The message says I need to format the drive. I immediately took it to the guy who fixes my computer who told me he only a sees 10% success rate in retrieving data from portable hard drives. He's pretty good and I'll pay what he asks. I'm kicking myself because the program was finished, bug-free and I planned to build a robotic version from that code. I've been away since March and (violins begin) I'll have to retrace a lot of steps.
  • edited 2011-11-03 - 12:30:57
    Mike, It's Spin. I'll check the obex. It's good to hear from you guys again. I've been involved with 2D animation which I thought would be over in a month. I have a dual passion.
  • edited 2011-11-03 - 12:55:40
    Heater, If it's a recurring question then it's actually encouraging. I can recover from this. My goals will get pushed back and I will make the adjustment so it doesn't happen again.
  • edited 2011-11-03 - 13:03:31
    Lardom
    I have built and repaired literary hundreds of computer in my life time and I've only had one situation when I could not retrieve the data from a HDD. There are tricks you can use to get the data back.
    If the message...
    'need to format the drive. ' Seriously try mounting with Linux live disk
    Try using a live Linux disk and mount the HDD in question then copy fiels.
    Using Windows Install HDD in another computer and copy files off it.
    Use software to recover Data even after a format has taken place.
    If HDD is faulty
    replace circuit board from another HDD that is the same model as yours.
    I have even went as far as freezing the HDD.
    Moral of the story is to not panic, think smartly and get that data.
  • edited 2011-11-03 - 13:14:24
    Although I made some suggestions, I don't want to encourage you too much. It is extraordinarily difficult to recover high level language source from compiled binary code. There are tools that sometimes can do this for PCs. There are disassemblers for a variety of microcontrollers, but don't fool yourself. The result requires a tremendous amount of hand tweaking and a lot of information in the variable names, labels, and comments is gone forever. Go ahead and experiment, but don't expect much. You'll learn about the process and about the format of the binary program and Spin's interpretive code, but that may be all and it will absorb a lot of time. Heater's advice is good. The next rewrite is often better than the version you lost.
    Regarding Duane's comment ... I believe BST used GEAR as a model for its disassembler. Neither converts the binary to Spin source. They depend on being able to merge the original source file with the Spin disassembler output.
  • edited 2011-11-03 - 13:36:46
    There seems to be two questions here now:
    1) How do I recreate my Spin/PASM program from the EEPROM binary image?
    2) How do I recover my Spin/PASM source from my dead hard drive.
    For 1) I would say it is unlikely. The compilation process throws away a lot of information.
    For 2) Well, you may be lucky. I have never have been.
  • edited 2011-11-03 - 13:57:09
    If you can get the EEPROM image you could run it under SpinSim and print out a Spasm (Spin assembly) listing of the executed instructions. With a bit of work I could generate a complete Spasm listing for you. The Spasm code could be converted into a Spin source file, but it wouldn't contain the symbolic names that you used. However, you could use a text editor to replace the generated symbols with the original variable names.
  • edited 2011-11-03 - 14:16:21
    Mike, I'm not discouraged. To be honest, rewewing a dialogue with this forum gives me a big lift. Perhaps my greatest accomplishment in life was creating two patentable machines because of the help I got through this forum while in my fifties. I'm still amazed. I really appreciate the replies which helped put things in perspective.
    Dave Hein, could you tell me more?
  • edited 2011-11-03 - 14:46:55
    I looked through BST. I couldn't see anything that looked like it might decompile an EEPROM image. Sorry for the false lead. I am pretty sure I read that BST could do that in a forum thread.
    I looks like Hippy thought decompiling a Spin program should be possible. I wonder if he made any progress?
    He mentioned his interest in this thread. (From 'Similar Threads' at the bottom of this page.)
    I wish you well in your efforts.
    Duane
  • edited 2011-11-03 - 14:56:40
    1. DO NOT LET WINDOWS DO ANYTHING TO THE DRIVE!
    2. Get a PROFESSIONAL file recovery program that doesn't 'edit' the disk, onlly scans it and saves the contents onto another disk. (This means it won't do any damage. No tool included with Windows is safe... )
    Personally, I prefer File Rescue Professional from http://www.essentialdatatools.com/
    It's NOT a free program, and it's definitely NOT a quick one, but it is thorough. The free downloadable version is limited to rescuing about 500KB, I think, and should be enough to see if the license is worth buying.
    copying in the license code will unlock all the functions.
    (I've used it to rescue files from physically damaged drives, Memorysticks and CF-cards, in addition to recovering deleted or formatted files/partitions)
    For those who speak other languages than is currently supported, it's possible to get a FREE license by translating the program to another language.(It's just editing a text file. )
    Edit: fixed link.
  • edited 2011-11-03 - 16:31:47
    Dave Hein, could you tell me more?
    With SpinSim you could run the binary from a program like thisand it would produce a listing that looks like this.Of cousre, what you would really need would be just a static disassembly instead of the disassembly from an execution of the program. I could probably write the static disassembler in an hour or so. The disassembler generates Spasm, which has a one-to-one correlation with instructions in Spin. A program could be written to convert Spasm into simple Spin instructions. I did something like that when I wrote a quine that generated its Spin source from its bytecodes. However, the quine program used a restricted set of bytecodes to keep things simple.
  • edited 2011-11-03 - 18:08:37
    http://www.driveservice.com/
    The above guys have been around for ages and are really quite reliable. Having been in the tax preparation and bookkeeping business, there is always someone that gets hit with an IRS audit and finds that they need to recover data from bad CDS, bad BU tape, or a failed hard drive.
    These guys will take on anything reasonable and give you an honest assessment before spending your money.
  • edited 2011-11-04 - 07:30:09
    I thought I read somewhere that Hippy reverse engineered Prop ROM? The notion that the Propeller was vulnerable because the source code is in an external eeprom and not burned in like the PIC is the major reason I haven't applied for a patent.
    My name appears on the LCD upon reset which I thought would make the device harder to steal. Hmm...Any knowledgeable programmer could duplicate the actions of a PIC which doesn't use an eeprom.
    So unless I create a device that makes finding the chemical composition of a substance as easy as the common 'stud sensor' finds wall density, I probably shouldn't worry someone stealing source code.
  • edited 2011-11-04 - 07:48:52
    FWIW, here at work I have copies of my work -- including past work -- in two locations each on two computers in my cube, and one location on the network drive, and in SourceSafe also on the network. If something goes wrong, I should be able to restore my work. I hope.
    Remember, 'the chief purpose of computers is to irritate humans and annoy them forever!'
    --Rich
  • edited 2011-11-04 - 07:59:55
    Yes, the Prop ROM routines were decoded and disassembled, but they were written in assembly, not Spin, and they're relatively small ... 500 instructions or so for the Spin interpreter for example. Their behavior was also very well documented at the time ... essentially all of the interpretive codes were known. The source code, whether for Spin or assembly, has never been put into the Propeller's EEPROM, just the highly compressed Spin bytecodes.
  • edited 2011-11-04 - 22:12:31
    1. DO NOT LET WINDOWS DO ANYTHING TO THE DRIVE!
    2. Get a PROFESSIONAL file recovery program that doesn't 'edit' the disk, onlly scans it and saves the contents onto another disk. (This means it won't do any damage. No tool included with Windows is safe... )
    Personally, I prefer File Rescue Professional from http://www.essentialdatatools.com/
    It's NOT a free program, and it's definitely NOT a quick one, but it is thorough. The free downloadable version is limited to rescuing about 500KB, I think, and should be enough to see if the license is worth buying.
    copying in the license code will unlock all the functions.
    (I've used it to rescue files from physically damaged drives, Memorysticks and CF-cards, in addition to recovering deleted or formatted files/partitions)
    For those who speak other languages than is currently supported, it's possible to get a FREE license by translating the program to another language.(It's just editing a text file. )
    Edit: fixed link.

    Yes to most all of the suggestions in this and preceding posts with the exception of ANYTHING that attempts to modify the drive. When the s#@@$ is in the fan, er HDD, the very first thing to do is go into forensics mode. ALTER NOTHING!!! As several have mentioned, boot into a live knoppix (CD/USB) session and then mount the damaged drive. I think it may do this read only mode, but make sure. Make sure also that you know what it was identified as and mounted as and then make a forensic copy using dd to a separate drive. There are other alternatives, but I have used and trust dd. Work only on the copy. Damage / alter the original and you are likely well done (toast ?) if you can not duplicate it bit for bit. You may need to tell it to ignore errors as well.
    If you have a master copy to work from and all else has been tried, you could use a program called SpinRite to attempt recovery of the original disk. I have seen this one work miracles to the point of recovering a clients disk after having its PC barbequed in an office fire. I first found this program back around 1986. If you have an identical drive, you may also be able to swap the controller electronics board if that is the failure. Others have used professional services that actually move your platters into another identical drive and recover the data that way. $$$$
    Not much to add to this thread, mainly just protect the original at all costs until there is nothing left to try save SpinRite or some others mentioned here. Treat your original as though it were evidence.
    If doubt your have, lots of experts can you find.
    Frank
  • edited 2011-11-05 - 01:54:48
    Frank. All good suggestions. I would just note
    that you do not need to mount the drive in order to use dd to copy it. In fact it's better not to although I guess mounting read only would be OK.
    This thread is making me very nervous. I have some backing up to do...
  • edited 2011-11-05 - 07:50:09
    Heater said,
    This thread is making me very nervous. I have some backing up to do...

    I can console myself that this thread may benefit someone. I'm still waiting for a call from the repairman. I knew he was backed up and that he stays up late working on clients' computers. At the moment I still hold out hope that he can salvage what represents a couple year's work. If not, I have no choice but to start over much wiser. This is my 3rd time using him. The 1st disaster was a fried cap on the motherboard. The 2nd was that my anti virus software had hidden the boot sector partition and would not boot. He 'surgically' removed the AV software and replaced it with AVG.
    (Admitting such extraordinary studipity makes me wince but hiding from it would have been worse.)
  • edited 2011-11-05 - 16:19:08
    Well, I just picked up a couple half TB drives, and made copies of basically everything, including some system images. Never a bad time for that.
  • edited 2011-11-05 - 17:00:32
    Off site backup:
    http://www.carbonite.com/en/
    Saved my butt twice in two years. Well worth the price.Very happy with the service.
    And it's automatic. Create a file...it's saved automatically. Change a file, bingo, it's saved.
  • edited 2011-11-05 - 18:23:00
    Frank. All good suggestions. I would just note
    that you do not need to mount the drive in order to use dd to copy it. In fact it's better not to although I guess mounting read only would be OK.
    This thread is making me very nervous. I have some backing up to do...

    True on the mount, attempting that gives me an idea of how screwed up the drive is going to be. If it can mount, maybe some things can be salvaged immediately. If it can not mount, then I know I am in for a significantly harder time of it. And yeah, I need to do some backing up myself because even though in my world, nothing can go wrong, goe rong, gW@WEjl; jk';lkk l;a'sdf
    Frank
  • edited 2011-11-05 - 18:36:42
    Well, I just picked up a couple half TB drives, and made copies of basically everything, including some system images. Never a bad time for that.

    Used to be that death and taxes were the only certainty, now we must add 'hard drives all die' to the saying. Actually when it comes to system images, you really can not go wrong at all. I have a habit of backing up system images of certain devices just before releasing them to use after all the system, network, and DICOM configuration is complete. This can be a huge time saver in recovering critical systems. (A large medical OEM now does that to all of their systems at installation and after software changes) Not to mention money saver since downtime can cost thousands or more per day. Another advantage of doing a system image is that not only are all of your apps loaded, after a while you generally have some preferences set up among them, and to go back and set or relearn why you had a particular setting in place would be a PITA. Especially since you would probably end up rediscovering all the ones you forgot because they were taken for givens after a while. Very frustrating and time wasting.
    Time to go to Fry's soon,
    Frank