PWM On The ATmega328
PWM On The ATmega328
INTRODUCTION:
This tutorial is a mirror of the ATmega8 tutorial. Because the registers for this feature are completely different I have
split it into 2 complete chapters.
We know that the AVR lets us turn outputs on and off, but, what if we want to control the brightness of an LED or the
speed of a motor? Well the easiest way to do this is to change the voltage of the output but we can fake it. If we take
a voltage source and connect it for a second and then disconnect it for a second it will .... well be on for a second then
off for a second. BUT, if we manage to speed this up so that we connect/disconnect the power supply over 1000 times
a second we can fool the power supply into thinking that our signal is half the value of the power supply. This is called
Pulse Width Modulation or PWM for short.
THEORY OF OPERATION:
When you take a square wave, its on for a while and off for a while. If we divide the on by the off and multiply by
100% we will get what is called a duty cycle.
So if we are on for 1ms and then off for 1ms we will end up with a 50% duty cycle; If we are on for 1ms and off for
3ms we end up with a 25% duty cycle.
Now if we take our duty cycle and multiply it by our voltage we will get the output voltage. So if we have a 5V power
supply and we activate a PWM on a 25% duty cycle we will make an analog device behave as if it was receiving a
1.25V signal. Cool eh!?
Much like the counter functions PWM can be simulated in software however, the hardware version
is preferred because it just sort of does its own thing and, with very little coding you can get a constant square wave
going.
Remember the Prescaler? well its back in the PWM. And much like in the counter, its roll is to slow things down.
This is good because it allows us to run the PWM at different frequencies. This is important because some devices
are sensitive to PWM speeds. A motor for example will get hot if the PWM waveform is too fast, and will jitter if the
PWM is too slow. Since I already planted the question in your head, the answer is start at 10kHz. Different motors like
different frequencies but 10kHz will get you into the ball park.
The ATmega168/328 has 6(!!!) PWM outputs, 2 are located on each timer/counter.
As always, the output pin has the same limitations as any output (see the Digital Output Chapter for details).
The AVR's PWM timer is capable of running in 3 different modes: Fast PWM, Phase Corrected PWM and Phase
and Frequency Phase Corrected PWM.
Fast PWM works the same way as the normal counter. The Control Logic receives the signal
and increments the TCNTn register. When a match is detected the OCFnx flag is set and signal is send to
the Waveform Generator. The Waveform Generator then changes the state of the OCnx pin (the state is
determined by the selected mode). When the TCNTn register passes the TOP value (0xFF or OCRnA) it
simply overflows (or overruns) back to 0, at the same time the OCFnx flag is set. The OCFnx flag can be
configured to trigger an interrupt. The OCFnx flag can be cleared by software, but as always is
cleared automatically when an interrupt request is triggered.
Due to the high frequency of this mode is best used for DAC, fading LEDs, rectification and Power
regulation.
The Frequency of the fast PWM can be calculated by the following equation.
The phase corrected mode is a bit strange, it counts up until it hits the TOP value (FIXED, OCRnA or
ICRn) then starts to count down until it hits the BOTTOM (0). The Control Logic receives the signal
and increments the TCNTn register. When a match is detected the OCFnx flag is set and signal is send to
the Waveform Generator. The Waveform Generator then changes the state of the OCnx pin (the state is
determined by the selected mode). When the TCNTn register hits the TOP value (FIXED, OCRnA or ICRn)
the OCFnx flag is set. The OCFnx flag can be configured to trigger an interrupt. The OCF1x flag can be
cleared by software, but as always is cleared automatically when an interrupt request is triggered.
This mode can be inverted or noneinverted. In noneinverting mode, the OCn pin is LOW(GND) on the
Compare Match between TCNTn and OCRnx while upcounting, and HIGH(VCC) on the Compare Match
while downcounting. In inverting mode, the OCn pin is HIGH(VCC) on the Compare Match between
TCNTn and OCRnx while upcounting, and LOW(GND) on the Compare Match while downcounting.
The frequency of the Phase Corrected PWM can be calculated by the following equation.
If anyone knows anything more (or if I'm wrong) about these 2 modes please let me know.
The frequency of the Phase and Frequency Corrected PWM can be calculated by the following equation.
PWM_frequency = clock_speed / (2 * Prescaller_value * TOP_value )
Timer/Counter0 has 2 outputs, OC0A and OC0B. Since both of these outputs run off the same timer and waveform
generators both OC0A and OC0B are synchronized, this make the timer perfect for making tank robots (I love tank
robots).
Timer/Counter0 does not have a 32 or 128 devision in its prescaler. Because of this it is somewhat limited to the
frequencies that it could produce. If you need a specific frequency on your PWM use Timer/Counter2 which has all of
its prescaler values.
Timer/Counter0 is capable of running on 4 modes the Fast PWM with a max TOP (0xFF), a Fast PWM mode with a
variable TOP (OCR0A), a Phase Corrected PWM mode with a max TOP (0xFF) and a Phase Corrected PWM mode
with a variable TOP (OCR0A). Each of these modes can be inverted or noneinverted.
ATmega168/328 Code:
// this code sets up counter0 for an 8kHz Fast PWM wave @ 16Mhz Clock
#include <avr/io.h>
int main(void)
{
DDRD |= (1 << DDD6);
// PD6 is now an output
OCR0A = 128;
// set PWM for 50% duty cycle
while (1);
{
// we have a working Fast PWM
}
}
Timer/Counter1 has 2 outputs, OC1A and OC1B. Since both of these outputs run off the same timer and waveform
generators both OC1A and OC1B are synchronized, this make the timer perfect for making tank robots (I love tank
robots).
Timer/Counter1 is capable of running in 3 modes the Fast PWM mode, the Phase Corrected PWM mode and,
Phase and Frequency Corrected mode. Each of these modes can be inverted or noneinverted. Just like
Timer/Counter0 Timer/Counter1 has several options for controlling the TOP value of the PWM unlike Timer/Counter0
however, the TOP value can be fixed, stored in the OCR1A register or the ICR1 register (see table below).
COM1A1 COM1A0
COM1B1 COM1B0 DESCRIPTION
0 0 Normal port operation, OC1A/OC1B disconnected.
0 1 Mode 9,11,14,15 only: Enable OCR1A only (OC1B disconnected)
1 0 Noneinverted mode (HIGH at bottom, LOW on Match)
1 1 Inverted mode (LOW at bottom, HIGH on Match)
Applies only to PWM modes
ATmega168/328 Code:
// this code sets up counter1 A output at 25% and B output at 75%
// using ICR1 as top (16bit), Fast PWM.
#include <avr/io.h>
int main(void)
{
DDRB |= (1 << DDB1)|(1 << DDB2);
// PB1 and PB2 is now an output
ICR1 = 0xFFFF;
// set TOP to 16bit
OCR1A = 0x3FFF;
// set PWM for 25% duty cycle @ 16bit
OCR1B = 0xBFFF;
// set PWM for 75% duty cycle @ 16bit
TCCR1A |= (1 << COM1A1)|(1 << COM1B1);
// set none-inverting mode
TCCR1A |= (1 << WGM11);
TCCR1B |= (1 << WGM12)|(1 << WGM13);
// set Fast PWM mode using ICR1 as TOP
TCCR1B |= (1 << CS10);
// START the timer with no prescaler
while (1);
{
// we have a working Fast PWM
}
}
Timer/Counter2 is pretty cool because it has 2 outputs, OC2A and OC2B. Since both of these outputs run off the
same timer and waveform generators both OC2A and OC2B are synchronized, this make the timer perfect for making
tank robots (I love tank robots).
As stated under Timer/Counter2, Timer/Counter2 has all of its prescaler values, this makes it capable of producing a
lot more frequencies then its 8 bit brother.
Timer/Counter2 is capable of running on 4 modes the Fast PWM with a max TOP (0xFF), a Fast PWM mode with a
variable TOP (OCR2A), a Phase Corrected PWM mode with a max TOP (0xFF) and a Phase Corrected PWM mode
with a variable TOP (OCR2A). Each of these modes can be inverted or noneinverted.
ATmega168/328 Code:
// this code sets up counter2 for an 8kHz Fast PWM wave @ 16Mhz Clock
#include <avr/io.h>
int main(void)
{
DDRD |= (1 << DDD6);
// PD6 is now an output
OCR2A = 128;
// set PWM for 50% duty cycle
TCCR2A |= (1 << COM2A1);
// set none-inverting mode
TCCR2A |= (1 << WGM21) | (1 << WGM20);
// set fast PWM Mode
TCCR2B |= (1 << CS21);
// set prescaler to 8 and starts PWM
while (1);
{
// we have a working Fast PWM
}
}
OTHER RESOURCES: