<div dir="ltr">Hi, I have compiled a test code for an ERC32 target board and loaded it using gdb,<br>the code:<br><br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">#include <bsp.h><br><br>#include <stdlib.h><br>#include <stdio.h><br><br>rtems_task Init(<br>  rtems_task_argument ignored<br>)<br>{<br><br>    uint16_t a=6;<br>    printf( "Hello World Michel\n" );<br>    printf( "numero: %d\n",a );<br>    <br><br>}<br><br><br>#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER<br>//#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER<br>#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER<br><br>#define CONFIGURE_RTEMS_INIT_TASKS_TABLE<br>#define CONFIGURE_MAXIMUM_TASKS 1<br><br>#define CONFIGURE_INIT<br><br>#include <rtems/confdefs.h><br></blockquote><br><br>the board returned in the console:<br><br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hello World Michel<br>numero: 6<br></blockquote><br>and GDB returns:<br><br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">[Inferior 1 (Remote target) exited normally]<br></blockquote><br>Everything as expected, but when I comment the #define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER line<br>and put #define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER the board seems to restart and gdb returns the following:<br><br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">[Inferior 1 (Remote target) exited with code 020]<br></blockquote><br>I know that I'm not using any clock depending function but shouldn't the<br>program work anyway ? Also I tried the clock function rtems_clock_get_ticks_per_second()<br>to get the ticks and print it, but it didn't work.<br><br>Could someone explain wy this is happenning ? Also what is the code 020 return in GDB ?<br>I tried to find an error list for gdb but I couldn't find.</div>