This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

can code go into eeprom

Hello my english speaking friends.
I will like to work with GLCD.
I working with the program uv4 and others, and this generate table of chars for the compilers CCs and Hs...
How can i to converter this format file(chars) to binari format (bin) , for load to eeprom 24lcxx ?
Thanks by people.

Parents
  • You can put anything you like into a serial EEPROM

    The question is whether the CPU can fetch its instructions for execution from there - to which the short answer is, "No.".

    The long answer is that you would have to write code that would:
    1. fetch the stuff from the serial EEPROM;
    2. put that stuff into a place from which the CPU can fetch its instructions for execution;
    3. get the CPU to start fetching its instructions for execution from that location.

    Which is, essentially, the function of a so-called Bootloader...

Reply
  • You can put anything you like into a serial EEPROM

    The question is whether the CPU can fetch its instructions for execution from there - to which the short answer is, "No.".

    The long answer is that you would have to write code that would:
    1. fetch the stuff from the serial EEPROM;
    2. put that stuff into a place from which the CPU can fetch its instructions for execution;
    3. get the CPU to start fetching its instructions for execution from that location.

    Which is, essentially, the function of a so-called Bootloader...

Children