EmbeddedRelated.com
Forums

New Dynamic C version - slow debugging and timeouts

Started by Jonatan Magnusson June 16, 2011
Hi,

We have a product based on the Rabbit 2000 microcontroller (RCM2300) and
we have used Dynamic C 7.33 since start.

I wanted to upgrade to version 10.66, but it seems that version is not
compatible with Rabbit 2000?

So I upgraded to version 9.62 instead, and it seems to work, but I have
a problem with very slow debug output and after a few seconds I get a
timeout ("Error Timeout while waiting for response from target").

I've created a minimal program:

void main ()
{
int n;
n = 0;
while (1) {
printf ("Loop iteration %d\n", n);
n++;
}
}

I'm using dccl_cmp.exe to compile (Sorry, I can't stand the Dynamic C
UI) and this is my command line:

c:\dcrabbit_9.62\dccl_cmp test.c -s 1:115200:1:0 -mf -h+ -wa -ri-
-rp- -rd- -sto 1000

I have no problem when using 7.33 (which is installed on the same
computer) or the UI of Dynamic C 9.62. I've tested this on both our
product and on a Smartcat BL2100, that use the same core module.

Any hints?
Regards,
Jonatan Magnusson