Operácie

AVR StudioTutorial: Rozdiel medzi revíziami

Z SensorWiki

(Creating a New Project)
Riadok 11: Riadok 11:
 
Once the program has started, you will be looking at a screen like this.  
 
Once the program has started, you will be looking at a screen like this.  
  
[[Obrázok:AVR_Studio_Screen01.png]]
+
[[Obrázok:AVR_Studio_Screen01.png|center]]
  
  
Riadok 20: Riadok 20:
 
[[Obrázok:AVR_Studio_Screen02.png|center]]
 
[[Obrázok:AVR_Studio_Screen02.png|center]]
  
The dialog box shown in the next figure appears. In this dialog box you should enter the project name. We choose the name led here, but this could of course be an arbitrary name.
+
The dialog box shown in the next figure appears. In this dialog box you should enter the type of the project, its name and location.  
  
[[Obrázok:AVR_Studio_Screen02.png|center]]
+
[[Obrázok:AVR_Studio_Screen03.png|center]]
 +
 
 +
First, we have to select the Project type:
 +
 
 +
    * '''Atmel AVR Assembler''': This informs AVR Studio that is should use the built-in Assembler when compiling the project.  We'll use this option in the following example.
 +
 
 +
    * AVR GCC compiler: This option enables the user to use an external gcc compiler when compiling and linking the project.
 +
 
 +
Select the "Atmel AVR Assembler" Project type.
  
Next you'll have to select the project location. This is the location where AVR Studio will store all files associated with the project. We have used the location c:\code as the folder. If the folder does not exist, AVR Studio will automatically create it without any further notification.
+
Next, we have to assign a name to our project.
 +
We choose the name '''Example1''' here, but this could of course be an arbitrary name.  
 +
Wa also choose the name of the main source file as '''main.asm''', but this usually can be the same name as the project.
  
NOTE: If c:\code already exists, delete this folder and its contents.
+
Next you'll have to select the project location. This is the location where AVR Studio will store all files associated
 +
with the project. We have used the location D:\ as the folder. If the folder does not exist, AVR Studio will automatically
 +
create it without any further notification.
  
Now we have to select the Project type:
+
Now press the 'Next' button to continue.
  
    * AVR Assembler: This informs AVR Studio that is should use the built-in Assembler when compiling the project. No further configuration is required by the user. We'll use this option in the following example.
 
  
    * Generic 3rd party C compiler: This option enables the user to manually configure AVR Studio to use an external compiler when compiling and linking the project.
 
  
Select the "AVR Assembler" Project type and press the 'OK' button to continue.
 
  
 
[[Obrázok:AVR_Studio_Screen02.png]]
 
[[Obrázok:AVR_Studio_Screen02.png]]

Verzia zo dňa a času 07:26, 24. september 2010

for version 4


Starting AVR Studio

  • Start the AVR Studio program by clicking on:
     Start->Programs->ATMEL AVR Tools->AVR Studio 4

Once the program has started, you will be looking at a screen like this.

AVR Studio Screen01.png


Creating a New Project

Immediately after the start, the popup window will appear. You can open an old project or create a new one. To create a new project, select "New Project".

AVR Studio Screen02.png

The dialog box shown in the next figure appears. In this dialog box you should enter the type of the project, its name and location.

AVR Studio Screen03.png

First, we have to select the Project type:

   * Atmel AVR Assembler: This informs AVR Studio that is should use the built-in Assembler when compiling the project.  We'll use this option in the following example.
   * AVR GCC compiler: This option enables the user to use an external gcc compiler when compiling and linking the project. 

Select the "Atmel AVR Assembler" Project type.

Next, we have to assign a name to our project. We choose the name Example1 here, but this could of course be an arbitrary name. Wa also choose the name of the main source file as main.asm, but this usually can be the same name as the project.

Next you'll have to select the project location. This is the location where AVR Studio will store all files associated with the project. We have used the location D:\ as the folder. If the folder does not exist, AVR Studio will automatically create it without any further notification.

Now press the 'Next' button to continue.



AVR Studio Screen02.png