avr.rst
changeset 1674 34357d086f63
parent 1673 ed7fa7e54aaa
child 1675 7e5ff3a96f2d
equal deleted inserted replaced
1673:ed7fa7e54aaa 1674:34357d086f63
     1 -*- mode: outline -*-
       
     2 
       
     3 * ISP.
       
     4 
       
     5 ** avrdude
       
     6 
       
     7 AVRDUDE is an utility to download/upload/manipulate the ROM and EEPROM
       
     8 contents of AVR microcontrollers using the in-system programming technique
       
     9 (ISP).
       
    10 
       
    11   http://www.nongnu.org/avrdude/
       
    12                 home page
       
    13 
       
    14 ** uisp.
       
    15 
       
    16 Uisp is a tool for AVR microcontrollers which can interface to many hardware
       
    17 in-system programmers.
       
    18 
       
    19   http://savannah.nongnu.org/projects/uisp/
       
    20 
       
    21 * tool-chain.
       
    22 
       
    23 ** WinAVR.
       
    24 
       
    25 WinAVR (pronounced "whenever") is a suite of executable, open source software development tools
       
    26 for the Atmel AVR series of RISC microprocessors hosted on the Windows platform. It includes the GNU
       
    27 GCC compiler for C and C++. 
       
    28 
       
    29  http://winavr.sourceforge.net/
       
    30                 home page
       
    31 
       
    32 ** GNU.
       
    33 
       
    34 *** avr-libc.
       
    35 
       
    36   $ sudo apt-get install avr-libc
       
    37 
       
    38   http://www.nongnu.org/avr-libc
       
    39                 home page
       
    40 
       
    41 ** binutils-avr.
       
    42 
       
    43   $ sudo apt-get install binutils-avr
       
    44 
       
    45 ** gcc-avr.
       
    46 
       
    47   $ sudo apt-get install gcc-avr
       
    48 
       
    49 ** gdb-avr.
       
    50 
       
    51   $ sudo apt-get install gdb-avr
       
    52 
       
    53 * Simulator.
       
    54 
       
    55 ** simulavr.
       
    56 
       
    57   $ sudo apt-get install simulavr
       
    58 
       
    59 
       
    60