-
Notifications
You must be signed in to change notification settings - Fork 0
/
timer.c
35 lines (28 loc) · 1011 Bytes
/
timer.c
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
#include "ioport.h"
#include "io.h"
#include "timer.h"
#include "interrupt.h"
#include "threads.h"
#define CONTROL_PORT 0x43
#define DATA_PORT 0x40
const int div = 59659;
void init_timer() {
out8(CONTROL_PORT, (2 << 1) | (3 << 4)); //устанавливаем таймер прерывания
//76543210
//00110100
//[3:1] "--- лежит 2,выбрали номер режима работы.
//[5:4] "--- записано 3, то есть сначала хотим записать наименее значимый бит, потом наиболее.
out8(DATA_PORT, div % 256);
out8(DATA_PORT, div / 256);
}
static double current_time = 0;
static double last_scheduler_time = 0;
const int FREC = 1193180;
void timer_interrupt_handler(void) { // обрабатывем прерывание.
current_time += div * 1.0 / FREC;
if (current_time - last_scheduler_time > 0.01) {
last_scheduler_time = current_time;
send_EOI();
yield();
}
}