Skip to main content

AVR Studio 4 Installation Guide

Introduction to AVR Studio 4

AVR Studio 4 is Atmel's integrated development environment (IDE) specially design to write and debug applications for AVR devices. The suite includes a text editor to write programs, an assembler to translate assembly code into object programs, and a simulator to watch code's behavior without need of having an AVR device attached.  

System Requirements :
  • Window XP
  • Window Vista
  • Window 7(32-Bit)
  • Window 7(64-Bit)
  • Windows 8

Step 1:
Download AVR Studio 4 from Here - Download

Step 2:
Download Win AVR from Here - Download

Step 3: 
Install Win AVR Software

Step 4:
Installing AVR Studio
  • Locate the setup program in the folder where you downloaded the software. In this case, the name of the setup program is aStudio4b460.exe.


  • Double-click on aStudio4b460.exe to start the installation. Select Next on the appearing window.
  • Read the license agreement, select the "I accept" option, and click Next.
  • The next window will ask whether you want to install an USB driver. Do not check this option
    because that driver is not the right one for the AT90USB device. Simply choose Next
  • Click Install to start AVR Studio installation process.

    Once it is completed, click Finish.
  • To complete AVR Studio, we must install AVR Studio 4.12 Service Pack 4.

    Locate the setup program in the folder where you downloaded the software. In this case, select the setup program aStudio412SP4b498.exe to start installation. Click Next in the appearing window.

  • The next window will ask again whether you want to install an USB driver. Do not check this option because that driver is not the right one for the AT90USB device. Simply choose Next to proceed with the installation.
  • The last window should appear. Click Finish to complete installation. AVR Studio is now installed. 

Comments

Popular posts from this blog

AVR First Program - LED Blink

This is a simple blinking LED program. We will look at basic structure and cover specifics about the syntax. First let’s talk about the files that surround the main document you created. These are called “includes” and they bring code into the main document. This code adds or augments the functionality of your code. Includes can be found in the WinAvr folder and in the current project folder.  This include is outside the project folder and uses the <> around the name #include <avr/io.h> Schematic  Program /*********************************************************** Program : LED Blink. Software: IDE: Atmel Studio 4 Compiler: avr-gcc Microcontroller - Atmega 16 Port B : LED Copyright (C) 2014 - 2016 H.E.A.R.T. Tech Solutions, India. ************************************************************/ #include<avr/io.h> #include<util/delay.h> void main() { DDRB=0b1111111; // PORT B All Bits...

Upload HEX file to AVR Microcontroller - Using SINAPROG

Resource Download  Download SINAPROG Program Burning Software - Download USBASP Driver Download - Download USBASP Programmer Schematic and Firmware - Download  SINAPROG is use to upload HEX file in all AVR Microcontrollers. To upload HEX file in Microcontroller we require following things :- 1. HEX Code Generated by AVR Studio 4  2. AVR USBASP Programmer 3. AVR Training Board 4  FRC 10-10 Female Cable  5  Blank AVR Microcontroller Step to Program Step 1 :   Connect USBASP Programmer with AVR Trainer Board in ISP ( In System Programming ) section using FRC Cable. Step 2 :  Attach Blank AVR Microcontroller (Ex - Atmega 16 ) to AVR Trainer Board. Step 3.  Open SINAPROG Software, In HEX Section - Click Folder Icon and select the HEX file to be uploaded in Microcontroller  Step 4: Select the Microcontroller in Device Section in which the Program is to be uploaded or Click Search if already co...