Tag: Memory

  • Memory Space in ATmega16A

    To effectively program AVR based microcontroller you must have knowledge about its memory space. Since there is not just one memory space. There are three different address spaces. They are: Data memory (SRAM) Here all your the intermediate results are stored and all the run time calculation get carried in this memory space. Program memoryIt…

  • Memory Management

    The memory is limited. And since it is limited it becomes a precious resource. So you have to manage the memory from the beginning of the embedded system. Most of the code written for embedded system will be in c or in c++ using an IDE. The code will then built by the compiler in…