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

data structer in programming?

how i can implement variable length data base ( or data storage structure)in keil C programe?

Parents Reply Children
  • the 8052 Max RAM is 64K. If you need more than that you need external storage. You can Use Banking to increase it, but it adds a lot of complexity. Serial memory or SD Cards are better since you will not be time critical (see how a little info from you changes the answers you get)
    If you are looking for malloc(). It is there but you need to configure it. Also it is a very poor choice for a small embedded system.

  • how i can implement variable length data base

    you will need memory space for the max size, why not just allocate that or "all available memory"?

    Erik