AVR Timers – PWM Mode – Part II
This article is in continuation with the previous PWM post. Learn how to program the timers to operate in PWM mode! So let’s begin!
Hello folks! Long time no see! :)
In my previous post, we have discussed the basic concepts of PWM. Let’s summarize it first:
- PWM stands for Pulse Width Modulation.
- It can be generated by comparing predetermined waveform with a reference voltage level or by making simple analog circuits.
- Duty Cycle of a PWM waveform is given by the following relation.
- There are three modes of PWM operation – Fast PWM, Phase Correct PWM and Frequency and Phase Correct PWM
- How to choose timer, operation mode and compare output mode for generating the desired PWM.
Problem Statement
Let us take a problem statement. We need to generate a 50 Hz PWM signal having 45% duty cycle.
Analysis
Given that
Frequency = 50 Hz
In other words, the time period, T
T = T(on) + T(off) = 1/50 = 0.02 s = 20 ms
Also, given that
Duty Cycle = 45%
Thus, solving according to equation given above, we get
T(on) = 9 ms T(off) = 11 ms
Now, this can be achieved in two ways:
- Use Timer in CTC Mode
- Use Timer in PWM Mode
Methodology – CTC Mode
Okay, so I won’t be writing any code here (just the pseudo code). I assume that after reading my previous posts, you are smart enough to write one yourself! We will discuss only the concepts.
Firstly, choose a suitable timer. For this application, we can choose any of the three timers available in ATMEGA32. Choose a suitable prescaler. Then set up the timer and proceed as usual. The catch lies here is that you need to update the compare value of OCRx register everytime. One such way is discussed in the pseudo code given below.
This is analogous to the traditional LED flasher, except the fact that the on and off times are different.
Pseudo Code
#include <avr/io.h> #include <avr/interrupt.h> uint8_t count = 0; // global counter // initialize timer, interrupt and variable void timerX_init() { // set up timerX with suitable prescaler and CTC mode // initialize counter // initialize compare value // enable compare interrupt // enable global interrupts } // process the ISR that is fired ISR (TIMERx_COMPA_vect) { // do whatever you want to do here // say, increment the global counter count++; // check for the global counter // if count == odd, delay required = 11 ms // if count == even, delay required = 9 ms // thus, the value of the OCRx should be constantly updated if (count % 2 == 0) OCRx = 9999; // calculate and substitute appropriate value else OCRx = 10999; // calculate and substitute appropriate value } int main(void) { // initialize the output pin, say PC0 DDRC |= (1 << 0); // initialize timerX timerX_init(); // loop forever while(1) { // do nothing } }
Now this is one method. And it’s very inefficient. You can increase its efficiency by writing a better C code (syntax-wise), however the concept remains the same. If you have any other method/concept, you are most welcome to share it here! :)
UPDATE: One of the readers of maxEmbedded, “coolpales” has written this code, and it worked for him.
Please note that this code not tested yet! So, if any of you is trying it out, do post your results here, I would be happy to see them! :)
Methodology – PWM Mode
Okay, so now lets learn about the PWM mode. The PWM Mode in AVR is hardware controlled. This means that everything, by everything I mean “everything”, is done by the AVR CPU. All you need to do is to initialize and start the timer, and set the duty cycle! Cool, eh?! Let’s learn how!
Here, I have used Timer0 of ATMEGA32 for demonstration. You can choose any other other timer or AVR microcontroller as well. Now let’s have a look at the registers.
TCCR0 – Timer/Counter0 Control Register
We have come across this register in my Timer0 tutorial. Here, we will learn how to set appropriate bits to run the timer in PWM mode.
We will discuss only those bits which are of interest to us now.
- Bit 6,3 – WGM01:0 – Waveform Generation Mode – These bits can be set to either “00” or “01” depending upon the type of PWM you want to generate. Here’s the look up table.
- Bit 5,4 – COM01:0 – Compare Match Output Mode – These bits are set in order to control the behavior of Output Compare pin (OC0, pin 4 in ATMEGA32) in accordance with the WGM01:0 bits. The following look up table determine the operations of OC0 pin for Fast PWM mode.
Now lets have a look at the Fast PWM waveforms. Detailed explanation can be found in my previous tutorial.
Now let me remind you that the AVR PWM is fully hardware controlled, which means that even the timer compare operation is done by the AVR CPU. All we need to do is to tell the CPU what to do once a match occurs. The COM01:0 pins come into play here. We see that by setting it to “10” or “11”, the output pin OC0 is either set or cleared (in other words, it determines whether the PWM is in inverted mode, or in non-inverted mode).
Similarly for Phase Correct PWM, the look up table and the waveforms go like this.
Even here, setting COM01:0 to “10” or “11” determines the behavior of OC0 pin. As shown in the waveforms, there are two instances – one during up-counting, and other during down-counting. The behavior is clearly described in the look up table.
Please note that OC0 is an output pin. Thus, the effects of WGM and COM won’t come into play unless the DDRx register is set properly. Refer this tutorial for more info.
- Bit 2:0 – CS02:0 – Clock Select Bits – These bits are already discussed in Timer0 tutorial.
OCR0 – Output Compare Register
We have come across even this register in my Timer0 tutorial. We use this register to store the compare value. But when we use Timer0 in PWM mode, the value stored in it acts as the duty cycle (obviously!). In the problem statement, its given that the duty cycle is 45%, which means
OCR0 = 45% of 255 = 114.75 = 115
And that’s it! Now we are ready to write a code for it! :)
Edit: Note
The following code discusses how to create a PWM signal of a desired duty cycle. If you wish to change its frequency, you need to alter the TOP value, which can be done using the ICRx register (which is not supported by 8-bit timers). For 16-bit Timer1, it can be varied using ICR1A. I will discuss about this soon when we discuss about servo control.
Code
So here goes the code. To learn about I/O port operations in AVR, view this. To know about bit manipulations, view this. To learn how to use AVR Studio 5, view this. To learn how this code is structured, view the previous TIMER0 post.
#include <avr/io.h> #include <util/delay.h> void pwm_init() { // initialize TCCR0 as per requirement, say as follows TCCR0 |= (1<<WGM00)|(1<<COM01)|(1<<WGM01)|(1<<CS00); // make sure to make OC0 pin (pin PB3 for atmega32) as output pin DDRB |= (1<<PB3); } void main() { uint8_t duty; duty = 115; // duty cycle = 45% of 255 = 114.75 = 115 // initialize timer in PWM mode pwm_init(); // run forever while(1) { OCR0 = duty; } }
Problem Statement
So now, let’s take another problem statement. This one is going to be a more of a practical stuff unlike the previous one!
Let’s take the traditional LED flasher where we need to blink an LED at a particular frequency. But hey, wait, didn’t we discuss it long back in this post (scroll down towards the end)? Hmm, so let’s modify it so as to incorporate PWM. Unlike the traditional LED flasher (where LEDs are either ON or OFF), lets make it glow at the maximum brightness, and then slowly decrease its brightness till it reaches zero, and then again increase its brightness slowly till it becomes maximum.
Analysis and Code
So how do we do it? Yes, you guessed it right! Decrease the duty cycle slowly from 255 to zero, and then increase it from zero to 255. Depending upon the duty cycle, the voltage applied to the LED varies, and thus the brightness. The following formula gives the relation between voltage and duty cycle.
So here goes the code. I won’t explain it, you can decode it yourself. To learn about I/O port operations in AVR, view this. To know about bit manipulations, view this. To learn how to use AVR Studio 5, view this. To learn how this code is structured, view the previous TIMER0 post.
// program to change brightness of an LED // demonstration of PWM #include <avr/io.h> #include <util/delay.h> // initialize PWM void pwm_init() { // initialize timer0 in PWM mode TCCR0 |= (1<<WGM00)|(1<<COM01)|(1<<WGM01)|(1<<CS00); // make sure to make OC0 pin (pin PB3 for atmega32) as output pin DDRB |= (1<<PB3); } void main() { uint8_t brightness; // initialize timer0 in PWM mode pwm_init(); // run forever while(1) { // increasing brightness for (brightness = 0; brightness < 255; ++brightness) { // set the brightness as duty cycle OCR0 = brightness; // delay so as to make the user "see" the change in brightness _delay_ms(10); } // decreasing brightness for (brightness = 255; brightness > 0; --brightness) { // set the brightness as duty cycle OCR0 = brightness; // delay so as to make the user "see" the change in brightness _delay_ms(10); } // repeat this forever } }
So here ends my another much awaited and long tutorial! Next up.. Serial Communication! See you around!! :)
And yeah, if you have any suggestions, doubts, constructive criticisms, etc, you are most welcome to drop a note below! Subscribe to my blog or grab the RSS Feeds to stay updated!
163 Comments
Trackbacks/Pingbacks