hmmpic
Joined: 09 Mar 2010 Posts: 314 Location: Denmark
|
18F14K50, could not start target..... Someone with ICD-U64? |
Posted: Wed Dec 01, 2010 10:23 am |
|
|
Hi
**Someone with ICD-U64 please make the test?**
*Pin is tested with Volt meter, and the CCSload all pin is changing as expected test.
*ICD can detest the chip, and program it with ccsload program.
*Only thing not working is the debugger?
Got constant problem with:
"Could not start target: The target was not halted after reset......."
The funny thing is all is working on a 18F4550 but not on my 18F14K50?
I think it is some wrong config fuses...
Some simple test code, I use 8M internal osc:
Code: | #include "18f14k50.h"
#fuses DEBUG,CPUDIV1,INTRC_IO,NOMCLR,NOLVP
#use delay(Clock=8M,internal)
void main(){
while (1){
output_high(PIN_B6);
delay_ms(200);
output_low(PIN_B6);
delay_ms(200);
}
} |
|
|