CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

How many times flash PIC before verification errors?

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
jfathman



Joined: 25 Jun 2015
Posts: 8
Location: Lewisville, Texas

View user's profile Send private message

How many times flash PIC before verification errors?
PostPosted: Thu Jun 25, 2015 4:57 pm     Reply with quote

I am using CCSLoad and LOAD-n-GO to program a PIC18F67J60.

After reprogramming it less than a dozen times, I am getting verification errors.

In general, how many times should I expect to be able to reprogram this (or similar) PIC processor? Do these things only take programming a few times before wearing out, or is the one I have atypical?

Thanks.

Jim
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Thu Jun 25, 2015 5:40 pm     Reply with quote

The PIC data sheet says:
Quote:

TABLE 28-1: MEMORY PROGRAMMING REQUIREMENTS

Program Flash Memory -

Cell Endurance: 100 Minimum, 1K typical

That is pretty low compared to most 18F PICs.


18F67J60 data sheet:
http://ww1.microchip.com/downloads/en/DeviceDoc/39762f.pdf

Post the error messages that you are getting.
Ttelmah



Joined: 11 Mar 2010
Posts: 19339

View user's profile Send private message

PostPosted: Fri Jun 26, 2015 1:03 am     Reply with quote

That really is terribly low. Perhaps 100* worse than just about any other PIC!...
It's worth also realising that you may create more cycles than you 'think', unless you are very careful in how things are set, and what you change. :(

However, that being said, a failure so soon, raises other things:
Most likely cause, wiring, smoothing, environment, etc.. The life can be made much worse, by things like excessive heat, poor smoothing during the write, electrical spikes - list is endless.
Also the actual electrical connections used by the programmer can have a major effect.
This thread might be interesting:
<http://www.microchip.com/forums/m342033.aspx>

What programmer are you using?.

There were bugs with this chip and several programmers on specific software versions.

There are several threads on the Microchip site about this.
asmallri



Joined: 12 Aug 2004
Posts: 1634
Location: Perth, Australia

View user's profile Send private message Send e-mail Visit poster's website

Re: How many times flash PIC before verification errors?
PostPosted: Fri Jun 26, 2015 7:43 am     Reply with quote

jfathman wrote:
I am using CCSLoad and LOAD-n-GO to program a PIC18F67J60.

After reprogramming it less than a dozen times, I am getting verification errors.

In general, how many times should I expect to be able to reprogram this (or similar) PIC processor? Do these things only take programming a few times before wearing out, or is the one I have atypical?

Thanks.

Jim



I did extensive testing with this processor when it first came out. I developed a bootloader for this family and had to be sure the product would be useful without prematurely killing the PIC. Despite very extensive testing I was not able to kill them by repetitive programming.

HOWEVER I did have a lot of trouble programming them. The issue turned out to be the length of the cable that came with the ICD2 at that time. Once I halved the length of the standard cable I had no more issues programming the devices.
_________________
Regards, Andrew

http://www.brushelectronics.com/software
Home of Ethernet, SD card and Encrypted Serial Bootloaders for PICs!!
jfathman



Joined: 25 Jun 2015
Posts: 8
Location: Lewisville, Texas

View user's profile Send private message

PostPosted: Fri Jun 26, 2015 8:02 am     Reply with quote

Thanks, these are all very helpful replies. Great community.

To answer the questions, I am using CCSLoad with LOAD-n-GO, and the verification step fails with:

Verification Results
Program Memory
Address Actual Expected
00000800 30 72
00000801 21 EF
00000802 20 A1
00000803 30 F0
00000800 30 38
00000801 21 31
00000802 20 38
00000803 30 39

8 errors from 800 to 803

Error patterns indicate a failure to erase.
jfathman



Joined: 25 Jun 2015
Posts: 8
Location: Lewisville, Texas

View user's profile Send private message

PostPosted: Fri Jun 26, 2015 12:04 pm     Reply with quote

This turns out to be pilot error on my part. I had changed the serial number length used by the CCSLoad utility, and that clobbered the very address 0800 that reported the verification failure. Dueling storage. Sorry for the fire drill, really appreciate the helpful suggestions.

So with the PIC flashing properly again, I am back to the original problem that had me fiddling with the serial number storage.

I have procedure documentation for what is probably an older version of CCSLoad that has serial number configuration fields including Address and Length(bytes), and a choice between Prgm ROM and Data EEPROM.

However, my contemporary version of CCSLoad v5.018 has instead Address, To, Length(bytes) and a choice between EEPROM, ROM 1/Inst, ROM 2/Inst, ROM 3/Inst, and ROM CONST.

(The odd thing is that the online help in the new v5.018 CCSLoad has screen shots of the older fields, not the new ones.)

If I was supposed to select Prgm ROM with the older CCSLoad, what is the equivalent choice among EEPROM, ROM 1/Inst, ROM 2/Inst, ROM 3/Inst, and ROM CONST?

Thanks very much.

Jim
Ttelmah



Joined: 11 Mar 2010
Posts: 19339

View user's profile Send private message

PostPosted: Fri Jun 26, 2015 1:50 pm     Reply with quote

The options are for:

1) EEPROM - puts it in EEPROM - only for chips with EEPROM
2) ROM 1/Inst - puts one character per instruction. For PIC16
2) ROM 2/Inst - 2 per instruction PIC18
3) ROM 3/Inst - 3 per instruction PIC24 etc..
4) ROM Const - formats as for a Const.

#ROM for your chip stores as option 2.
jfathman



Joined: 25 Jun 2015
Posts: 8
Location: Lewisville, Texas

View user's profile Send private message

PostPosted: Fri Jun 26, 2015 3:35 pm     Reply with quote

Thanks Ttelmah, most helpful. Makes perfect sense.
ronaldoklais



Joined: 18 Dec 2012
Posts: 13

View user's profile Send private message

PostPosted: Thu Jul 02, 2015 6:53 pm     Reply with quote

What is the minimum? To put a PIC into production we need to burn 100 times the same source?
Ttelmah



Joined: 11 Mar 2010
Posts: 19339

View user's profile Send private message

PostPosted: Fri Jul 03, 2015 12:54 am     Reply with quote

Read the data sheet....

Already been answered for this particular PIC (100 Minimum), however this is very exceptional. Most are more like 10000.
ronaldoklais



Joined: 18 Dec 2012
Posts: 13

View user's profile Send private message

PostPosted: Fri Jul 03, 2015 7:29 am     Reply with quote

And a hardware to do this?
jfathman



Joined: 25 Jun 2015
Posts: 8
Location: Lewisville, Texas

View user's profile Send private message

PostPosted: Mon Jul 06, 2015 1:33 pm     Reply with quote

Following up for future readers of this topic --

It turns that I was experiencing a problem with CCSLoad when programming the PIC18F67J60 using LOAD-n-GO.

I reverted from a recent CCSLoad version 5.018 to an earlier version 4.030, and the flash write errors no longer occur. I can reprogram the PIC at will.

Thanks again for all the quick assistance.
Ttelmah



Joined: 11 Mar 2010
Posts: 19339

View user's profile Send private message

PostPosted: Mon Jul 06, 2015 1:41 pm     Reply with quote

ronaldoklais wrote:
And a hardware to do this?


Er. Any programmer or bootloader....
gaugeguy



Joined: 05 Apr 2011
Posts: 291

View user's profile Send private message

PostPosted: Mon Jul 06, 2015 2:35 pm     Reply with quote

You can program the processor up to a minimum of 100 times before it may begin to fail.
You do not program the source code 100 times before releasing it.
ELCouz



Joined: 18 Jul 2007
Posts: 427
Location: Montreal,Quebec

View user's profile Send private message

PostPosted: Mon Jul 06, 2015 3:13 pm     Reply with quote

PCM programmer wrote:
The PIC data sheet says:
Quote:

TABLE 28-1: MEMORY PROGRAMMING REQUIREMENTS

Program Flash Memory -

Cell Endurance: 100 Minimum, 1K typical

That is pretty low compared to most 18F PICs.


18F67J60 data sheet:
http://ww1.microchip.com/downloads/en/DeviceDoc/39762f.pdf

Post the error messages that you are getting.



Wow this is low... you better know what you are doing Wink

Often you could reach this number on a prototype model (with a lot of release cycle)...
_________________
Regards,
Laurent

-----------
Here's my first visual theme for the CCS C Compiler. Enjoy!
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group