View previous topic :: View next topic |
Author |
Message |
rikotech8
Joined: 10 Dec 2011 Posts: 376 Location: Sofiq,Bulgariq
|
Problem with programming the chip |
Posted: Sat Mar 31, 2012 3:25 am |
|
|
I use CCS compiler IDE 4.114.
The programming device is Brenner.
I wrote a code, and simulate this code at ISIS Proteus. Then i attempt to put the hex file into a chip memory. Errors occurred during writing the chip.
I tried with another chip of the same type, but the error occurs again.
Here is the errors:
Quote: |
Start to program FLASH## 25 error(s)
Start write Configuration## 3 error(s)
|
and here is the code:
Code: |
#include <18f2431.h>
#fuses NOWDT,INTRC,NOBROWNOUT,NOMCLR
#use delay(internal=8M)
void main()
{
while(true)
{
output_toggle(pin_a1);
delay_ms(500);
}
}
|
I wonder, if that errors would be occurs due to disorder in my program.
The programing device support that chip. Any idea?
Thx in advance! |
|
|
temtronic
Joined: 01 Jul 2010 Posts: 9226 Location: Greensville,Ontario
|
|
Posted: Sat Mar 31, 2012 7:39 am |
|
|
You should post a link to the programmer's website.
hmm 25 errors.. WHY not just say WHAT the errors are??? |
|
|
rikotech8
Joined: 10 Dec 2011 Posts: 376 Location: Sofiq,Bulgariq
|
|
Posted: Sat Mar 31, 2012 10:57 am |
|
|
Mhmm. Ok i start to searching programmers forum!
I hope there is a solution. |
|
|
SherpaDoug
Joined: 07 Sep 2003 Posts: 1640 Location: Cape Cod Mass USA
|
|
Posted: Sat Mar 31, 2012 2:35 pm |
|
|
If you give us a link to the manufacturer's web page for this programmer we would be able to compare it to programmers we use and see where problems may lie. _________________ The search for better is endless. Instead simply find very good and get the job done. |
|
|
PCM programmer
Joined: 06 Sep 2003 Posts: 21708
|
|
Posted: Sat Mar 31, 2012 2:49 pm |
|
|
This is not a CCS issue. I think the Brenner programmer is a home-built
programmer.
You should use Google to search for answers. Use Google to find a
forum that discusses Brenner programmers. I did a quick search and
found this forum:
http://www.edaboard.com/thread109867.html |
|
|
rikotech8
Joined: 10 Dec 2011 Posts: 376 Location: Sofiq,Bulgariq
|
|
Posted: Wed Apr 18, 2012 3:33 am |
|
|
Ok. thanks! |
|
|
|