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
  • THE CODE IS NOT EXECUTABLE CODE. WHY DIDNT YOU READ WHAT I SAID!

    GLCD FOR SHOWING PICTURES LIKE BMP FILES.

    For first you need to understand what is in the BMP file and what you need to put in EEPROM

    A BMP file can have a complex structure where are defined a lot of extra information about picture,

    MY GLCD is RGB?

    for RGB you need to save 24 bits for each pixel so, you need to use 3 locations for your picture where any location tell you the value for R / G / B color

    if you are familiar with matlab you can write a program(script) what can convert any picture in raw format

    the eeprom memory is viewed like a unidimensional but my picture is bidimensionl, if i know rows and cols number i can save your picture line after line where pixel[5][6] form a picture 30X50.

    CAN I PUT THIS CODE INTO EEPROM?

Reply
  • THE CODE IS NOT EXECUTABLE CODE. WHY DIDNT YOU READ WHAT I SAID!

    GLCD FOR SHOWING PICTURES LIKE BMP FILES.

    For first you need to understand what is in the BMP file and what you need to put in EEPROM

    A BMP file can have a complex structure where are defined a lot of extra information about picture,

    MY GLCD is RGB?

    for RGB you need to save 24 bits for each pixel so, you need to use 3 locations for your picture where any location tell you the value for R / G / B color

    if you are familiar with matlab you can write a program(script) what can convert any picture in raw format

    the eeprom memory is viewed like a unidimensional but my picture is bidimensionl, if i know rows and cols number i can save your picture line after line where pixel[5][6] form a picture 30X50.

    CAN I PUT THIS CODE INTO EEPROM?

Children