Sign in

username:

password:



Not a member?

Search piclist



Search tips

Subscribe to piclist



piclist by Keywords

12F675 | 16F628 | 16F84 | 16f877 | 16F877A | 16F88 | 18F458 | ADC | AVR | Bootloader | CAN | CCS | CRC | EAGLE | EEPROM | ICD | ICSP | IDE | JDM | LED | Macros | Microchip | MPLAB | PCB-CAD | PIC10F | Pic12f675 | PIC16F84 | PIC16F84A | PIC16F877 | PIC18 | PIC18F452 | PicBasic | PICC | PICSTART | PWM | RS-485 | RS232 | SMT | SPI | UART | USART | USB | Wireless | Wisp628 | Xilinx

Ads

Discussion Groups

See Also

DSPFPGAElectronics

Discussion Groups | Piclist | PIC EEPROM Data to PC

A discussion group for the PICMicro microcontroller. Also called the Microchip PIC, this list is dedicated to the use and abuse of this fine, simple, microcontroller. Close to topic posts are welcome, ie. general electronics.

PIC EEPROM Data to PC - Paul - Mar 15 18:15:00 2006

Hi. How would i go about transfering my EEPROM Data from the PIC to 
either a PC or Floppy/Memory Card? I am currently looking on the Net 
for info, but just wondering if anyone has done this or have any 
information to help me?

Cheers
Paul
	


(You need to be a member of piclist -- send a blank email to piclist-subscribe@yahoogroups.com )


Re: PIC EEPROM Data to PC - Robert Rolf - Mar 15 18:29:00 2006

Simplest is serial link. Bit bang it if you have to.
Capture with Hyperterm. Use commas to separate data fields
and you can easily import saved file into a spreadsheet.
Interface is as simple as 74HC14 and some series resistors.

Next easiest is using a memory card in '1bit' mode.
Basically SPI. Lots of web docs out there on how to do that.
Look for 'SD card PIC data logger' for lots of hits.
Digikey has the card connectors. (Hirose)
Big headache is that you have to write the card in FAT16 or
FAT32 format for a PC to understand it without a special driver.

R

Paul wrote:

> Hi. How would i go about transfering my EEPROM Data from the PIC to 
> either a PC or Floppy/Memory Card? I am currently looking on the Net 
> for info, but just wondering if anyone has done this or have any 
> information to help me?
> 
> Cheers
> Paul
	


(You need to be a member of piclist -- send a blank email to piclist-subscribe@yahoogroups.com )

RE: PIC EEPROM Data to PC - Alan Marconett - Mar 15 19:37:00 2006

HI Paul,

How much data?

You can probably use MPLAB, "view" the EEPROM, copy/paste it to a text
editor.  I have done that with the program memory view after loading hex
code that I don't have the source code for (a partial disassembly).

In this case you'd just have a HEX code dump; but with a little trimming
with the editor you can then create an array for a source file.  The file
can then be assembled/compiled, and a proper hex file generated.

At one time I had a utility that would generate a proper hex file from a
simple trimmed HEX dump.  Not too hard to write.  Mostly you need to
calculate the checksum and add the Intel (or whatever) format.

From a HEX file you should be able to write it where ever you want.    

Alan  KM6VV
(OK, that was a mess of steps, but hopefully it gives you the idea).
	> 
> Hi. How would i go about transfering my EEPROM Data from the PIC to
> either a PC or Floppy/Memory Card? I am currently looking on the Net
> for info, but just wondering if anyone has done this or have any
> information to help me?
> 
> Cheers
> Paul
	


(You need to be a member of piclist -- send a blank email to piclist-subscribe@yahoogroups.com )

Re: PIC EEPROM Data to PC - upand_at_them - Mar 15 19:50:00 2006

You can read it directly from some programmers.  IC-Prog will do it.

Mike
	--- In piclist@picl..., "Paul" <paul_lav@...> wrote:
>
> Hi. How would i go about transfering my EEPROM Data from the PIC to 
> either a PC or Floppy/Memory Card? I am currently looking on the Net 
> for info, but just wondering if anyone has done this or have any 
> information to help me?
> 
> Cheers
> Paul
>
	
______________________________
Stellaris® MCU Family: New Parts, New Package, New Price.


(You need to be a member of piclist -- send a blank email to piclist-subscribe@yahoogroups.com )