#include <avr/io.h>
#include <avr/interrupt.h>
#ifndef F_CPU
#define F_CPU 16000000UL
#endif
// Initialize and start the timer 0
void init_timer0()
{
TCCR0A = 0; // normal operating mode
// enable CTC
TCCR0A |= (1 << WGM01);
// set prescaler to 64 (page 117)
TCCR0B |= (1 << CS01) | (1 << CS00);
// enable output compare A
TIMSK0 |= (1 << OCIE0A);
// 1 interrupt per ms
// use the formula given at
// https://www.tmvtech.com/baremetal-arduino-timers#calc
OCR0A = 250;
}
// Stores how much ms since the arduino is on
volatile uint16_t t0_millis = 0;
// Interrupt service routine (ISR) for Timer0
ISR(TIMER0_COMPA_vect)
{
t0_millis++;
}
int main()
{
// onboard led pin as output
DDRB |= (1 << PB5);
// initialize timer 0
init_timer0();
// Enable global interrupts
sei();
// loop forever
while (1)
{
// when one second has elapsed
if (t0_millis >= 1000)
{
// flip led state
PORTB ^= (1 << PB5);
// reset count
t0_millis = 0;
}
}
return 0;
}
nano:12
nano:11
nano:10
nano:9
nano:8
nano:7
nano:6
nano:5
nano:4
nano:3
nano:2
nano:GND.2
nano:RESET.2
nano:0
nano:1
nano:13
nano:3.3V
nano:AREF
nano:A0
nano:A1
nano:A2
nano:A3
nano:A4
nano:A5
nano:A6
nano:A7
nano:5V
nano:RESET
nano:GND.1
nano:VIN
nano:12.2
nano:5V.2
nano:13.2
nano:11.2
nano:RESET.3
nano:GND.3