This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

RTX on Cortex M3 applications

Hello,

I am evaluating RTX on various platforms. The first evaluation kit I tried was AT91SAM9263 and using examples and it went well. Since RTX example is not available for Cortex M3 (LM3S1968) applications, I used to common M config file (RTX_Config.h). However it doesn't proceed over os_sys_init (task1). Even after setting up the sysclktick (SysTickPeriodSet and SysTickEnable()) the os_sys_init enters IntDefaultHandler B area.

Please advise.

Parents
  • Just to add that the code is running in flash and display is updated, meaning tasks are running however debugger (ULIN2) is not stopping on the breakpoint after expected delay.

    result = os_evt_wait_or(0x1, 10000);

    if (result != OS_R_TMO)
    { <<breakpoint>> RIT128x96x4StringDraw(&pucHello[ulCol++], 0, 0, 11);
    ....
    ....
    ....

    Any setting that I am missing which is required in RTX debugging?

Reply
  • Just to add that the code is running in flash and display is updated, meaning tasks are running however debugger (ULIN2) is not stopping on the breakpoint after expected delay.

    result = os_evt_wait_or(0x1, 10000);

    if (result != OS_R_TMO)
    { <<breakpoint>> RIT128x96x4StringDraw(&pucHello[ulCol++], 0, 0, 11);
    ....
    ....
    ....

    Any setting that I am missing which is required in RTX debugging?

Children