aboutsummaryrefslogtreecommitdiff
path: root/kernel/time/mcu/atmega2560/clock.c
blob: 95622dcbc077e51c0c4acf08f644b12e6054f3d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include <avr/interrupt.h>
#include "time/clock.h"
#include "task/sched.h"
#include "mcu/task/context.h"

static void (*on_tick)();

void clock_init(int ms, void (*tick)()) {
  TCCR3A = 0;
  TCCR3B = 0;
  TCCR3C = 0;

  TCCR3B = (1 << WGM32); // turn on CTC mode:
  TCCR3B |= (1 << CS32) | (0 << CS31) | (1 << CS30); // set to 1024 prescaler

  unsigned long int fcpu = (unsigned long int) F_CPU;
  unsigned long int hz = 1000l / ((unsigned long int) ms);

  unsigned long int hz_counter = fcpu / (1024l * (hz)) - 1;
  OCR3A = hz_counter;
  on_tick = tick;
}

void clock_start() {
  TIMSK3 |= (1 << OCIE3A);
}

void clock_stop() {
  TIMSK3 &= ~(1 << OCIE3A);
}

ISR(TIMER3_COMPA_vect, ISR_NAKED) {
  context_save();
  on_tick();
  context_restore();
  reti();
}