I use eclipse cdt and I face the following problem
when I debug this code
uint32 **smap; for (i = 0, k = 0; i < n_total; i++) for (j = 0; j < n_state_pm-1; j++) smap[i][j] = k++;
every time compiler goes to the begging of method
int32 make_mdef_from_list(char *mdeffile, char **CIlist, int32 nciphones, heapelement_t **CDheap, int32 cdheapsize, char *pgm) {
You can find some answers in debugger documentation
http://sourceware.org/gdb/onlinedocs/gdb/Optimized- Code.html
I search about this issue and see that I have to disable code optimisation like this image but when I open my project properties I see this
do you know any thing helpful about that ?
I saw this page
http://husks.wordpress.com/2012/03/29/hardware-debugging-the-arduino-using- eclipse-and-the-avr-dragon/
Log in to post a comment.
I use eclipse cdt and I face the following problem
when I debug this code
every time compiler goes to the begging of method
You can find some answers in debugger documentation
http://sourceware.org/gdb/onlinedocs/gdb/Optimized-
Code.html
I search about this issue and see that I have to disable code optimisation

like this image
but when I open my project properties I see this
do you know any thing helpful about that ?
I saw this page
http://husks.wordpress.com/2012/03/29/hardware-debugging-the-arduino-using-
eclipse-and-the-avr-dragon/