EEPROM Programming

For questions and comments on programming in general. And for any items that don't fit into the forums below.

Moderators: Benj, Mods

Post Reply
nipbor
Posts: 4
Joined: Tue Mar 06, 2007 1:41 pm

EEPROM Programming

Post by nipbor »

Hi.

I need to burn 18Kbytes of data in an EEPROM (please note that i will be using the IC for storage and not for processing).

I own a E-blocks PICmicro USB Multiprogrammer. Is it possible to use this platform together with PPP to download this data into ANY EEPROM? Or is it just for PICs?

Thanks in advance.

User avatar
Benj
Matrix Staff
Posts: 15312
Joined: Mon Oct 16, 2006 10:48 am
Location: Matrix TS Ltd
Has thanked: 4803 times
Been thanked: 4314 times
Contact:

Re: EEPROM Programming

Post by Benj »

Hello

It is not possible to program an EEPROM directly using PPP.

However it is possible to create a program that will take data from the RS232 port and load it into an EEPROM one byte at a time.

Hyperterminal has a send file function so this could be used to transfer the EEPROM contents.

All your program would have to do is listen to the UART and wait for incoming data, when data is received send the data to the EEPROM and increment the address position. Then repeat.

Flowcode could come in useful here for programming the RS232, I2C or SPI communication.

nipbor
Posts: 4
Joined: Tue Mar 06, 2007 1:41 pm

Re: EEPROM Programming

Post by nipbor »

10x Ben.

Post Reply