Avr-gcc

From Attie's Wiki
(Difference between revisions)
Jump to: navigation, search
m
 
Line 1: Line 1:
=[http://esinyqynyso.co.cc Page Is Unavailable Due To Site Maintenance, Please Visit Reserve Copy Page]=
 
 
How to setup avr-gcc and get compiling for an Arduino!
 
How to setup avr-gcc and get compiling for an Arduino!
  
<pre>
+
<pre>
 
$ yum install avr-gcc avr-libc avr-binutils avrdude
 
$ yum install avr-gcc avr-libc avr-binutils avrdude
&lt;/pre&gt;
+
</pre>
  
 
See: using the [[Arduino IDE]]
 
See: using the [[Arduino IDE]]
  
&lt;h2&gt;avrdude&lt;/h2&gt;
+
<h2>avrdude</h2>
 
use [[avrdude]] to load files into the arduino
 
use [[avrdude]] to load files into the arduino
  
&lt;h2&gt;makefile&lt;/h2&gt;
+
<h2>makefile</h2>
  
&lt;h3&gt;devices&lt;/h3&gt;
+
<h3>devices</h3>
* &lt;code&gt;atmega168&lt;/code&gt;
+
* <code>atmega168</code>
* &lt;code&gt;atmega328p&lt;/code&gt;
+
* <code>atmega328p</code>
  
&lt;h3&gt;simple&lt;/h3&gt;
+
<h3>simple</h3>
 
Just produces the .elf and .hex file. Also optimizes for space (HUGE difference)
 
Just produces the .elf and .hex file. Also optimizes for space (HUGE difference)
&lt;pre&gt;
+
<pre>
 
all:
 
all:
 
         avr-gcc avr.c -mmcu=atmega328p -o example.elf -Wall -Os
 
         avr-gcc avr.c -mmcu=atmega328p -o example.elf -Wall -Os
 
         avr-objcopy -j .text -O ihex example.elf example.hex
 
         avr-objcopy -j .text -O ihex example.elf example.hex
 
         avrdude -c buspirate -P /dev/ttyUSB1 -p m328p -U flash:w:example.hex
 
         avrdude -c buspirate -P /dev/ttyUSB1 -p m328p -U flash:w:example.hex
&lt;/pre&gt;
+
</pre>
  
&lt;h3&gt;complex&lt;/h3&gt;
+
<h3>complex</h3>
 
produces .o, .asm, .map and .lst files too
 
produces .o, .asm, .map and .lst files too
&lt;pre&gt;
+
<pre>
 
all:
 
all:
         avr-gcc -g -mmcu=atmega328p -c avr.c -Wa,-alh,-L -o example.o &gt; example.asm
+
         avr-gcc -g -mmcu=atmega328p -c avr.c -Wa,-alh,-L -o example.o > example.asm
 
         avr-gcc -g -mmcu=atmega328p -Wl,-Map,example.map -o example.elf example.o
 
         avr-gcc -g -mmcu=atmega328p -Wl,-Map,example.map -o example.elf example.o
         avr-objdump -h -S example.elf &gt; example.lst
+
         avr-objdump -h -S example.elf > example.lst
 
         avr-objcopy -j .text -j .data -O ihex example.elf example.hex
 
         avr-objcopy -j .text -j .data -O ihex example.elf example.hex
 
         avrdude -c buspirate -P /dev/ttyUSB1 -p m328p -U flash:w:example.hex
 
         avrdude -c buspirate -P /dev/ttyUSB1 -p m328p -U flash:w:example.hex
&lt;/pre&gt;
+
</pre>
  
&lt;h2&gt;sample source&lt;/h2&gt;
+
<h2>sample source</h2>
  
&lt;h3&gt;blink&lt;/h3&gt;
+
<h3>blink</h3>
&lt;source lang=&quot;c&quot;&gt;
+
<source lang="c">
 
/* 8 Mhz cpu */
 
/* 8 Mhz cpu */
 
#define F_CPU 8000000UL
 
#define F_CPU 8000000UL
Line 47: Line 46:
 
#define LED 0b00100000
 
#define LED 0b00100000
  
#include &lt;util/delay.h&gt;
+
#include <util/delay.h>
#include &lt;avr/io.h&gt;
+
#include <avr/io.h>
  
 
int main(void) {
 
int main(void) {
Line 57: Line 56:
  
 
     /* turn led off */
 
     /* turn led off */
     PORTB &amp;= ~LED;
+
     PORTB &= ~LED;
 
     _delay_ms(450);
 
     _delay_ms(450);
  
Line 65: Line 64:
 
   }
 
   }
 
}
 
}
&lt;/source&gt;
+
</source>
  
&lt;h3&gt;S.O.S.&lt;/h3&gt;
+
<h3>S.O.S.</h3>
&lt;source lang=&quot;c&quot;&gt;
+
<source lang="c">
 
/* 8 Mhz cpu */
 
/* 8 Mhz cpu */
 
#define F_CPU 8000000UL
 
#define F_CPU 8000000UL
Line 75: Line 74:
 
#define LED 0b00100000
 
#define LED 0b00100000
  
#include &lt;util/delay.h&gt;
+
#include <util/delay.h>
#include &lt;avr/io.h&gt;
+
#include <avr/io.h>
  
 
void dot(void) {
 
void dot(void) {
Line 84: Line 83:
  
 
   /* turn led off */
 
   /* turn led off */
   PORTB &amp;= ~LED;
+
   PORTB &= ~LED;
 
   _delay_ms(500);
 
   _delay_ms(500);
 
}
 
}
Line 94: Line 93:
  
 
   /* turn led off */
 
   /* turn led off */
   PORTB &amp;= ~LED;
+
   PORTB &= ~LED;
 
   _delay_ms(500);
 
   _delay_ms(500);
 
}
 
}
Line 106: Line 105:
 
   while(1) {
 
   while(1) {
  
     for (i=0;i&lt;3;i++) {
+
     for (i=0;i<3;i++) {
 
       dot();
 
       dot();
 
     }
 
     }
     for (i=0;i&lt;3;i++) {
+
     for (i=0;i<3;i++) {
 
       dash();
 
       dash();
 
     }
 
     }
     for (i=0;i&lt;3;i++) {
+
     for (i=0;i<3;i++) {
 
       dot();
 
       dot();
 
     }
 
     }
Line 120: Line 119:
 
   }
 
   }
 
}
 
}
&lt;/source&gt;
+
</source>
  
&lt;h2&gt;other commands&lt;/h2&gt;
+
<h2>other commands</h2>
  
&lt;pre&gt;
+
<pre>
 
avr-size example.elf
 
avr-size example.elf
 
avr-gcc --help=optimizers
 
avr-gcc --help=optimizers
&lt;/pre&gt;
+
</pre>
  
&lt;h2&gt;resources&lt;/h2&gt;
+
<h2>resources</h2>
https://www.mainframe.cx/~ckuethe/avr-c-tutorial/&lt;br&gt;
+
https://www.mainframe.cx/~ckuethe/avr-c-tutorial/<br>
http://arduino.cc/en/Hacking/PinMapping168&lt;br&gt;
+
http://arduino.cc/en/Hacking/PinMapping168<br>
http://hintshop.ludvig.co.nz/show/buspirate-avr-programming/&lt;br&gt;
+
http://hintshop.ludvig.co.nz/show/buspirate-avr-programming/<br>
http://itp.nyu.edu/physcomp/uploads/6pinAVRproghead.jpg&lt;br&gt;
+
http://itp.nyu.edu/physcomp/uploads/6pinAVRproghead.jpg<br>
http://dangerousprototypes.com/bus-pirate-manual/&lt;br&gt;
+
http://dangerousprototypes.com/bus-pirate-manual/<br>
 
http://www.ladyada.net/library/arduino/bootloader.html
 
http://www.ladyada.net/library/arduino/bootloader.html

Latest revision as of 23:40, 18 December 2010

How to setup avr-gcc and get compiling for an Arduino!

$ yum install avr-gcc avr-libc avr-binutils avrdude

See: using the Arduino IDE

Contents

avrdude

use avrdude to load files into the arduino

makefile

devices

  • atmega168
  • atmega328p

simple

Just produces the .elf and .hex file. Also optimizes for space (HUGE difference)

all:
        avr-gcc avr.c -mmcu=atmega328p -o example.elf -Wall -Os
        avr-objcopy -j .text -O ihex example.elf example.hex
        avrdude -c buspirate -P /dev/ttyUSB1 -p m328p -U flash:w:example.hex

complex

produces .o, .asm, .map and .lst files too

all:
        avr-gcc -g -mmcu=atmega328p -c avr.c -Wa,-alh,-L -o example.o > example.asm
        avr-gcc -g -mmcu=atmega328p -Wl,-Map,example.map -o example.elf example.o
        avr-objdump -h -S example.elf > example.lst
        avr-objcopy -j .text -j .data -O ihex example.elf example.hex
        avrdude -c buspirate -P /dev/ttyUSB1 -p m328p -U flash:w:example.hex

sample source

blink

/* 8 Mhz cpu */
#define F_CPU 8000000UL
 
/* led pin */
#define LED 0b00100000
 
#include <util/delay.h>
#include <avr/io.h>
 
int main(void) {
  /* set port b direction register to output for led pin */
  DDRB = LED;
 
  while(1) {
 
    /* turn led off */
    PORTB &= ~LED;
    _delay_ms(450);
 
    /* turn led on */
    PORTB |= LED;
    _delay_ms(50);
  }
}

S.O.S.

/* 8 Mhz cpu */
#define F_CPU 8000000UL
 
/* led pin */
#define LED 0b00100000
 
#include <util/delay.h>
#include <avr/io.h>
 
void dot(void) {
  /* turn led on */
  PORTB |= LED;
  _delay_ms(200);
 
  /* turn led off */
  PORTB &= ~LED;
  _delay_ms(500);
}
 
void dash(void) {
  /* turn led on */
  PORTB |= LED;
  _delay_ms(700);
 
  /* turn led off */
  PORTB &= ~LED;
  _delay_ms(500);
}
 
int main(void) {
  char i;
 
  /* set port b direction register to output for led pin */
  DDRB = LED;
 
  while(1) {
 
    for (i=0;i<3;i++) {
       dot();
    }
    for (i=0;i<3;i++) {
       dash();
    }
    for (i=0;i<3;i++) {
       dot();
    }
 
    _delay_ms(5000);
 
  }
}

other commands

avr-size example.elf
avr-gcc --help=optimizers

resources

https://www.mainframe.cx/~ckuethe/avr-c-tutorial/
http://arduino.cc/en/Hacking/PinMapping168
http://hintshop.ludvig.co.nz/show/buspirate-avr-programming/
http://itp.nyu.edu/physcomp/uploads/6pinAVRproghead.jpg
http://dangerousprototypes.com/bus-pirate-manual/
http://www.ladyada.net/library/arduino/bootloader.html

Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox