Duleepa J Thrimawithana
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Tsystem_clk
either into actions in real time or to measure events in real timeDuleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
An ATmega328P uses a 1MHz system clock. In an embedded program you were developing, a 4μs delay needed to be generated and you decided that the best option is to use NOP operations.
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
An ATmega328P uses a 1MHz system clock. In an embedded program you were developing, a 4μs delay needed to be generated and you decided that an option is to use a timer peripheral. The timer peripheral you are using is fed directly by the system clock (i.e. prescaler is 1).
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
An ATmega328P uses a 16MHz system clock. Assume you plan to use one of the 8-bit timer peripherals in the ATmega328P. You have decided to use a prescaler of 4.
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Register | Functionality |
---|---|
TCCR0A | Timer/Counter Control Register A |
TCCR0B | Timer/Counter Control Register B |
TCNT0 | Timer/Counter Register |
OCR0A | Output Compare Register A |
OCR0B | Output Compare Register B |
TIMSK0 | Timer Interrupt Mask Register |
TIFR0 | Timer Interrupt Flag Register |
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
//This function configures TC0 to operate in CTC mode with a period of 1ms//The prescaler of 8 needed is not loaded to keep timer stopped until it is used void tc0_init(void){ TCCR0A = 0b00000010; //WGM0[2..0] should be set to 010 for CTC mode TCCR0B = 0b00000000; //Initialize CS0[2..0] to 000 so that timer is stopped until needed //When running we need to load 010 to CS0[2..0] for a prescaler of 8 OCR0A = 249; //Loading OCR0A with 249 to get a period of 1ms}
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
//This function creates a delay for duration requested in ms using polling void tc0_ms_delay(uint32_t milliseconds){ uint32_t timer_overflows = 0; //Counter to count the number of overflows TCNT0 = 0; //Reset the TCNT0 count TCCR0B |= 0b00000010; //Start the timer with a prescaler of 8 //Loop until the requested milliseconds have elapsed while (timer_overflows < milliseconds) { if((TIFR0 & (1 << OCF0A)) != 0){ //Check if the timer has overflowed timer_overflows++; //Increase the overflow count TIFR0 |= (1 << OCF0A); //Reset the overflow flag } } TCCR0B &= 0b11111000; //Stop the counter}
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
#include <avr/io.h> //Needed for using the macros for register addresses#include "tc0.h" //Including our TC0 peripheral libraryint main(void){ tc0_init(); //Initializing TC0 to work in CTC mode with 1ms period DDRB |= 1 << PINB5; //Setting PB5 as output while (1){ tc0_ms_delay(500); //Create a 0.5s delay PORTB ^= 1 << PINB5; //Toggle PB5 }}
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
void tc0_PWM_init(void){ DDRD |= 1 << PIND5; //PD5, which is the OC0B pin is set to an output //Configure the timer to operate in the Fast PWM mode with OCR0A as Top and a prescaler of 8 TCCR0A = 0b00100011; //Set to clear OC0B on compare match and set OC0B at BOTTOM TCCR0B = 0b00001010; //Setup prescaler to 8 and the mode to Fast PWM //Setup the period and the on-time of the PWM OCR0A = 5; //Set the TOP value to 5 OCR0B = 3; //Set the compare value to 3}
Duleepa J Thrimawithana, Department of Electrical, Computer and Software Engineering (2020)
Keyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
Number + Return | Go to specific slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
t | Restart the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |