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

Quick ROM/RAM usage Overview?

Is there a really quick, at-a-glance way to see how much ROM and RAM a particular application requires?

Parents
  • Yes, but it's not at all at-a-glance.

    What I'd like to see is a linker output summmary that looks like this:

    ddd bytes used in data RAM
    iii bytes used in idata RAM
    ttt bytes total in internal RAM
    xxx bytes used in xdata RAM
    ccc bytes used in ROM

    I'm not so much concerned about the usages in each module -- I can used the mapfile for that.

    More, I'd like to summarize the total RAM and ROM requirements for a given application, and be able to see at-a-glance what effect a particular change has. For example, different memory models, or different configurations in my code.

    I'd prefer not to have to wade through the map file for this info ...

    Regards,

Reply
  • Yes, but it's not at all at-a-glance.

    What I'd like to see is a linker output summmary that looks like this:

    ddd bytes used in data RAM
    iii bytes used in idata RAM
    ttt bytes total in internal RAM
    xxx bytes used in xdata RAM
    ccc bytes used in ROM

    I'm not so much concerned about the usages in each module -- I can used the mapfile for that.

    More, I'd like to summarize the total RAM and ROM requirements for a given application, and be able to see at-a-glance what effect a particular change has. For example, different memory models, or different configurations in my code.

    I'd prefer not to have to wade through the map file for this info ...

    Regards,

Children