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

Memory model

Hi,
We are working on one project using TDK6511 microcontroller. Microcontroller RAM size is 256 bytes, on chip XRAM is 2K. Expected code size is arround 32k. For our firmware arcitecture, nearly 150 bytes of stack size is required. Please guide me which memory model and ROM model is suitable for our project.

thanks in advance
Rajesh

Parents
  • nearly 150 bytes of stack size is required
    That is waaay off anything I have ever seen with Keil C51, how do you get to this enormous number.

    You can, of course go for the LARGE model, but I have found that going for LARGE and defining what need to be internal for reasons of speed is way more erroneous than going for samll and defining what can be slow (in XDATA).

    Erik

Reply
  • nearly 150 bytes of stack size is required
    That is waaay off anything I have ever seen with Keil C51, how do you get to this enormous number.

    You can, of course go for the LARGE model, but I have found that going for LARGE and defining what need to be internal for reasons of speed is way more erroneous than going for samll and defining what can be slow (in XDATA).

    Erik

Children