How To Use SPM To load Application from EEPROM Using Atmega

SPM To load Application from EEPROM 1

In any microcontroller the Boot-Loader is the first code which executes before the application code does. The major function of the Boot-Loader is to load the application code into the flash memory of the microcontroller and execute it. In AVR microcontroller the Self Programming Mode (SPM) helps the Boot-Loader to load a particular application from where the application binary is stored.The Boot-Loader may receive the code binary from other memory chips, SD-cards or through the serial port of the microcontroller in case of serial programming.

SPM To load Application from EEPROM 1

It is then with the help of the SPM that the microcontroller write the binary code into the application flash section.
In this particular project the operation of a Boot-Loader code using the SPM is demonstrated by re-writing flash memory with the code binary which has already been flashed into the built-in EEPROM of the ATMEGA16. The hardware used in this project includes ATMEGA16 as microcontroller, USBASP as the programmer and the software used are AVR STUDIO 4 as IDE and AVR-BURNO-MAT as the burner software.
The BLS section is normally used for storing the Boot-loader code for the microcontroller. The Boot-Loader code can be used for initializing the peripherals in the microcontroller, initialize the devices connected to the microcontroller, select the application to load and execute from a storage medium, load the selected application to the application section, jump to the application section and execute the application. The code running in the BLS section can execute Self Programing Mode (SPM) instructions which are blocked for the code running in the Application section. Using SPM instructions the code from the BLS can rewrite the code in the application section or the code in the BLS itself.
The task of writing the BLS code with SPM has been made simple by the APIs available in the header file <avr/boot.h>. The following are the important APIs available in the header file which helps in the SPM.

SPM To- load Application from EEPROM schematic

Using the above APIs one can write a code for SPM in an AVR microcontroller provided that the code should follow certain steps in the order.

  • Step: 1 Erase the flash page which is about to write into

{C·         Step: 2 Store the binaries in a temporary buffer before write into a flash page
{C}·         Step: 3 Program the filled temporary buffer into the already erased flash page

Read more: How To Use SPM To load Application from EEPROM

 

Leave a Comment

Your email address will not be published. Required fields are marked *