ATmega328

ATmega328P in 28-pin narrow dual in-line package (DIP-28N)
ATmega328P in 32-pin thin quad flat pack (TQFP-32)
Die of ATmega328P

The ATmega328 is a single-chip microcontroller created by Atmel in the megaAVR family (later Microchip Technology acquired Atmel in 2016). It has a modified Harvard architecture 8-bit RISC processor core.

Specifications

The Atmel 8-bit AVR RISC-based microcontroller combines 32 kB ISP flash memory with read-while-write capabilities, 1 kB EEPROM, 2 kB SRAM, 23 general purpose I/O lines, 32 general purpose working registers, three flexible timer/counters with compare modes, internal and external interrupts, serial programmable USART, a byte-oriented 2-wire serial interface, SPI serial port, 6-channel 10-bit A/D converter (8-channels in TQFP and QFN/MLF packages), programmable watchdog timer with internal oscillator, and five software selectable power saving modes. The device operates between 1.8-5.5 volts. The device achieves throughput approaching 1 MIPS per MHz.[1]

Key parameters

ParameterValue
CPU type8-bit AVR
Performance20 MIPS at 20 MHz[2]
Flash memory32 kB
SRAM2 kB
EEPROM1 kB
Pin count28 or 32 pin: PDIP-28, MLF-28, TQFP-32, MLF-32[2]
Maximum operating frequency20 MHz
Number of touch channels16
Hardware QTouch AcquisitionNo
Maximum I/O pins23
External interrupts2
USB InterfaceNo
USB Speed

Series alternatives

A common alternative to the ATmega328 is the "picoPower" ATmega328P. A comprehensive list of all other members of the megaAVR series can be found on the Atmel website.[3]

Applications

As of 2013 the ATmega328 is commonly used in many projects and autonomous systems where a simple, low-powered, low-cost micro-controller is needed. Perhaps the most common implementation of this chip is on the popular Arduino development platform, namely the Arduino Uno and Arduino Nano models.

Programming

Pinout of ATmega 48A/PA/88A/PA/168A/PA/328/P in 28-PDIP (datasheet)

Reliability qualification shows that the projected data retention failure rate is much less than 1 PPM over 20 years at 85 °C or 100 years at 25 °C.[4]

Parallel program mode[2]
Programming signalPin NameI/OFunction
RDY/BSYPD1OHigh means the MCU is ready for a new command, otherwise busy.
OEPD2IOutput Enable (Active low)
WRPD3IWrite Pulse (Active low)
BS1PD4IByte Select 1 (“0” = Low byte, “1” = High byte)
XA0PD5IXTAL Action bit 0
XA1PD6IXTAL Action bit 1
PAGELPD7IProgram memory and EEPROM Data Page Load
BS2PC2IByte Select 2 (“0” = Low byte, “1” = 2nd High byte)
DATAPC[1:0]:PB[5:0]I/OBi-directional data bus (Output when OE is low)

Programming mode is entered when PAGEL (PD7), XA1 (PD6), XA0 (PD5), BS1 (PD4) is set to zero.[2] RESET pin to 0V and VCC to 0V. VCC is set to 4.5 - 5.5V. Wait 60 μs, and RESET is set to 11.5 - 12.5 V. Wait more than 310 μs.[2] Set XA1:XA0:BS1:DATA = 100 1000 0000, pulse XTAL1 for at least 150 ns, pulse WR to zero. This starts the Chip Erase. Wait until RDY/BSY (PD1) goes high. XA1:XA0:BS1:DATA = 100 0001 0000, XTAL1 pulse, pulse WR to zero. This is the Flash write command.[2] And so on..

Serial Programming[2]
SymbolPinsI/ODescription
MOSIPB3ISerial data in
MISOPB4OSerial Data out
SCKPB5ISerial Clock

Serial data to the MCU is clocked on the rising edge and data from the MCU is clocked on the falling edge. Power is applied to VCC while RESET and SCK are set to zero. Wait for at least 20 ms and then the Programming Enable serial instruction 0xAC, 0x53, 0x00, 0x00 is sent to the MOSI pin. The second byte (0x53) will be echoed back by the MCU.[2]

See also

References

  1. "ATmega328P". Retrieved 2016-07-14.
  2. 1 2 3 4 5 6 7 8 "Atmel 8-bit AVR Microcontrollers ATmega328/P Datasheet Complete" (PDF). Retrieved 2016-07-14.
  3. "megaAVR Microcontrollers". Atmel. Retrieved 2016-07-14.
  4. "Atmel 8-bit AVR Microcontrollers ATmega328/P Datasheet Summary" (PDF). June 2016. Retrieved 2016-07-14.
  • "ATmega328 documents". Atmel.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.