I'm trying to debug an ATmega88 using an AVR Dragon and AVR Studio 6. The program is written in C++. Every time that I'm trying debug the program a messagebox appears saying
"Start Debugging": "ISP on AVR Dragon (00A2000006C63) does not support debugging. Device is only programmed. Use Start Without Debugging to avoid this message."`
I think the Dragon supports debugging over ISP because I could debug programs written in assembler in AVR Studio 4. The program is:
#include <avr/io.h>
#include <util/delay.h>
int main(void)
{
DDRC = 0xFF;
PORTC = (0 << PC4);
while(1)
{
PORTC = (1 << PC4);
_delay_ms(1000);
PORTC = (0 << PC4);
_delay_ms(1000);
}
return 0;
}
But this shouldn't be the problem. The program itself works out.