Changes between Initial Version and Version 1 of Arduino-0012-m328


Ignore:
Timestamp:
Jan 6, 2009 6:21:33 AM (15 years ago)
Author:
sgk
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Arduino-0012-m328

    v1 v1  
     1= Arduino 0012 for ATmega328P =
     2
     3ATmega328P seems to be almost identical to ATmega168, which is used in Arduino, except the flash memory space.
     4This is not true if you are a firmware programmer.
     5The header file ".../include/avr/iom328p.h" defines a little bit different macro symbols in comparison to the header file for ATmega168.
     6From this point of view, ATmega328P is a family of ATmega168P, not ATmega168.
     7The "P" suffix means the "picoPower" (tm) technology.
     8We have to use "*_vect" symbols instead of "SIG_*" symbols for interrupt vectors.
     9This is the reason the [http://spiffie.org/know/arduino_328/ Arduino 0011 IDE for ATmega328P by spiffie.org] does not work completely.
     10
     11''(2009-01-05 - sgk)''
     12