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

microlib and RTX

Sorry if my question is very simple...
But is it possible to use microlib together with RTX (Cortex M0) ?
I have read some of the doc about the microlib, but I'm not totally sure of the answer to my question....
Anyone ?

Parents
  • If that global stack overflows, then the startup code may overwrite global variables used by the C library, the OS or by any of the threads.

    Next thing is that you have multiple stacks in the startup file. One stack is used during startup - before you start to use threadspecific stacks.

    But the startup file also has stacks for other processor modes. Like interrupt processing.

Reply
  • If that global stack overflows, then the startup code may overwrite global variables used by the C library, the OS or by any of the threads.

    Next thing is that you have multiple stacks in the startup file. One stack is used during startup - before you start to use threadspecific stacks.

    But the startup file also has stacks for other processor modes. Like interrupt processing.

Children