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
  • And I will answer (part of) my own question :)
    It was the dreaded stack size! I keep wondering why after 30+ years of software development one still falls into this problem (maybe I'm the only one?)! In an effort to "optimize" the RAM usage, the stacksize in the startup file was lowered (to 128 bytes). This had the system crash after a few minutes. Lowering it to 96 had it crash immediatly, raising it to 128 made the system stable (it is now fixed at 256 bytes :)
    "Next time I see something similar I will check the stack as the first step"...(I have said that to myself many times before :D)

    The question still stands, are there any problems using Microlib with RTX ?

Reply
  • And I will answer (part of) my own question :)
    It was the dreaded stack size! I keep wondering why after 30+ years of software development one still falls into this problem (maybe I'm the only one?)! In an effort to "optimize" the RAM usage, the stacksize in the startup file was lowered (to 128 bytes). This had the system crash after a few minutes. Lowering it to 96 had it crash immediatly, raising it to 128 made the system stable (it is now fixed at 256 bytes :)
    "Next time I see something similar I will check the stack as the first step"...(I have said that to myself many times before :D)

    The question still stands, are there any problems using Microlib with RTX ?

Children