Introduction
We know that the chip commonly used in the Arduino development board is the AVR microcontroller series produced by Atmel. The most common is the ATmega328P, widely used on the Arduino Uno development board. Other commonly used AVR chips include the ATmega2560 and ATmega32U4. It is very convenient to use the Arduino platform to develop AVR microcontrollers. The Arduino IDE provides a clean, easy-to-use development environment that simplifies writing and uploading code. It provides a set of simplified function libraries and API so that developers can easily interact with the hardware of ATmega328P without a deep understanding of the underlying register operations.
Catalog
The Atmega328P is an 8-bit microcontroller chip that can be used in various control systems due to its strong performance and low power consumption. Because it can be found in Arduino boards, it is the most widely used AVR controller. The ATmega328P is capable of supporting analog input/output pins and serial communication interfaces. It employs 2KB of SRAM memory and 32KB of programmable flash memory. The Atmega328P is a popular microcontroller with many uses, particularly in embedded systems, automation, and electrical equipment control.
ATMega328 Pinout 28 PDIP
Figure1-ATMega328 Pinout 28 PDIP
Figure2-28MLF Top View
Figure3- 32MLF and 32TQFP
Pin No. |
Pin name |
Description |
Secondary Function |
1 |
PC6 (RESET) |
Pin6 of PORTC |
Pin by default is used as RESET pin. Only when the RSTDISBL Fuse has been programmed may PC6 be used as an I/O pin. |
2 |
PD0 (RXD) |
Pin0 of PORTD |
RXD (Data Input Pin for USART) USART Serial Communication Interface [Can be used for programming] |
3 |
PD1 (TXD) |
Pin1 of PORTD |
TXD (Data Output Pin for USART) USART Serial Communication Interface [Can be used for programming] INT2( External Interrupt 2 Input) |
4 |
PD2 (INT0) |
Pin2 of PORTD |
External Interrupt source 0 |
5 |
PD3 (INT1/OC2B) |
Pin3 of PORTD |
External Interrupt source1 OC2B is a PWM timer/counter that compares the match B output. |
6 |
PD4 (XCK/T0) |
Pin4 of PORTD |
T0( Timer0 External Counter Input) XCK ( USART External Clock I/O) |
7 |
VCC |
Connected to a positive voltage |
|
8 |
GND |
|
Connected to ground |
9 |
PB6 (XTAL1/TOSC1) |
Pin6 of PORTB |
XTAL1 refers to the external clock input or chip clock oscillator pin 1. TOSC1 (Timer Oscillator pin 1) |
10 |
PB7 (XTAL2/TOSC2) |
Pin7 of PORTB |
XTAL2 (Chip Clock Oscillator pin 2) TOSC2 (Timer Oscillator pin 2) |
11 |
PD5 (T1/OC0B) |
Pin5 of PORTD |
T1(Timer1 External Counter Input) OC0B(PWM - Timer/Counter0 Output Compare Match B Output) |
12 |
PD6 (AIN0/OC0A) |
Pin6 of PORTD |
AIN0(Analog Comparator Positive I/P) OC0A, which is a PWM timer/counter output that compares match A output. |
13 |
PD7 (AIN1) |
Pin7 of PORTD |
AIN1(Analog Comparator Negative I/P) |
14 |
PB0 (ICP1/CLKO) |
Pin0 of PORTB |
ICP1(Timer/Counter1 Input Capture Pin) The PB0 pin may be used to output the divided system clock. |
15 |
PB1 (OC1A) |
Pin1 of PORTB |
OC1A (Timer/Counter1 Output Compare Match A Output) |
16 |
PB2 (SS/OC1B) |
Pin2 of PORTB |
SS (SPI Slave Select Input). When the controller functions as a slave, this pin is low. [Serial Peripheral Interface (SPI) for programming] OC1B (Timer/Counter1 Output Compare Match B Output) |
17 |
PB3 (MOSI/OC2A) |
Pin3 of PORTB |
MOSI (Master Output Slave Input). This pin receives the data when the controller functions as a slave. [Serial Peripheral Interface (SPI) for programming] OC2 (Timer/Counter2 Output Compare Match Output) |
18 |
PB4 (MISO) |
Pin4 of PORTB |
MISO (Master Input Slave Output). When the controller acts as a slave, the data is sent to the master by this controller through this pin. [Serial Peripheral Interface (SPI) for programming] |
19 |
PB5 (SCK) |
Pin5 of PORTB |
SCK (SPI Bus Serial Clock). For precise data transfer, this controller and another system use this clock. [Serial Peripheral Interface (SPI) for programming] |
20 |
AVCC |
|
Power for Internal ADC Converter |
21 |
AREF |
Analog Reference Pin for ADC |
|
22 |
GND |
|
GROUND |
23 |
PC0 (ADC0) |
Pin0 of PORTC |
ADC0 (ADC Input Channel 0) |
24 |
PC1 (ADC1) |
Pin1 of PORTC |
ADC1 (ADC Input Channel 1) |
25 |
PC2 (ADC2) |
Pin2 of PORTC |
ADC2 (ADC Input Channel 2) |
26 |
PC3 (ADC3) |
Pin3 of PORTC |
ADC3 (ADC Input Channel 3) |
27 |
PC4 (ADC4/SDA) |
Pin4 of PORTC |
ADC4 (ADC Input Channel 4) SDA (Two-wire Serial Bus Data Input/output Line) |
28 |
PC5 (ADC5/SCL) |
Pin5 of PORTC |
ADC5 (ADC Input Channel 5) SCL (Two-wire Serial Bus Clock Line) |
Since ATmega328P is used in Arduino Uno and Arduino nano boards, you can directly replace the Arduino board with an ATmega328 chip. For that first, you need to install the Arduino bootloader into the chip (Or you can also buy a chip with a bootloader – ATMega328P-PU). This IC with a bootloader can be placed on an Arduino Uno board and burn the program. Once the Arduino program is burnt into the IC, it can be removed and used in place of the Arduino board, along with a Crystal oscillator and other components as required for the project. Below is the pin mapping between Arduino Uno and the ATmega328P chip.
Figure4-pin mapping
Materials Needed
Introduction
If you buy a brand new ATmega328P, and you want to program it, a natural way to do it is to unplug the chip that was plugged into the board, and plug in the new chip so that it can be programmed.
Figure5- ATmega328P
Figure6-Arduino Uno
Regretfully, this plan fails because the ATmega328P chip is programmed by the Arduino Uno via the onboard serial port; however, the new ATmega328P lacks the internal Bootloader functionality that is required to program the ATmega328P chip via the serial port.
Therefore, it is necessary to program the Bootloader into the ATmega328P first.
Step1: Program the Bootloader
The Arduino Uno can function as a programmer (ISP) and can be used to program the new ATmega328P's bootloader.
The Arduino Uno can be made into a programmer by downloading the "ArduinoISP" code included with the Arduino IDE to it:
Figuure7-Choose ArduinoISP
Step2: Program the Arduino Uno with the programmer
Before programming starts, connect the hardware as shown in the figure below:
Figure8-Hardware connection
Step3:Hardware connection when programming Bootloader
Keep in mind that pin 10 of the programmer's Arduino Uno is linked to the target board's RESET pin.
Select Arduino as a programmer in Arduino IDE:
Figure9-Arduino IDE
Step4: The programmer selects Arduino as ISP
Select "Arduino Uno" for the development board in the Arduino IDE. Click "Burn Bootloader" in the menu:
Figure10-Arduino Uno
Once the fire has begun to burn, the prompt reads:
Figure11-burning bootloader
Following a successful burning, the following prompt appears:
Figure12-prompt
Step5: Download Program
After programming the Bootloader, you can program the ATmega328P that has been programmed with the Bootloader through the serial port that comes with the Arduino Uno board. Before programming, you need to remove the ATmega328p on the Arduino Uno board as a programmer. It is the same as inserting the ATmega328P into the Arduino Uno development board to program it. The hardware connection is as follows:
Figure13- Bootloader
Step6: Hardware connection when programming the Flash program
In the Arduino IDE, write a program to blink an LED and choose "ArduinoISP" as the programmer:
Figure14-ArduinoISP
Step7: Select Programmer ArduinoISP
Then, you can download the program normally.
There are hundreds of applications for ATMEGA328P:
The RFB-0505S is a DC-DC converter from RECOM Power, Inc., belonging to the RFB Series. It features a Single In-Line Package (SIP7) and provides a single unregulated output. This converter offers 1 watt of power with an output voltage of 5V and is rated for an isolation voltage of 1kV.
Read More >In the world of electronics, ensuring efficient power management is crucial for the performance and reliability of devices. One of the key components in achieving this is the DC-DC converter. Today, we dive into the specifics of the RFMM-0505S DC-DC converter, exploring its features, applications, and benefits.
Read More >A DC-DC converter is an essential electronic device to convert a direct current (DC) source from one voltage level to another. These converters are widely employed in various applications, including portable electronic devices, automotive systems, and renewable energy installations.
Read More >The LM3900 consists of four independent dual-input internally compensated amplifiers. These amplifiers are specifically designed to operate on a single power supply voltage and provide a large output voltage swing. They utilize current mirrors to achieve in-phase input functionality. Applications include AC amplifiers, RC active filters, low-frequency triangle waves, square wave, and pulse waveform generation circuits, tachometers, and low-speed, high-voltage digital logic gates.
Read More >The goal of the Taiwan Semiconductor MMBT3906 PNP Bipolar Transistor is to provide a high surge current capability with minimal power loss. This transistor is perfect for automated installation and has high efficiency.
Read More >